Stringlerde Karşılaştırma:
"Elma" == "elma"
False
"Elma" != "elma"
True
"elma" == "elma"
True
a = "elma"
b = "elma"
a == b
True
"a" < "b"
True
"ab" < "b"
True
"ab" < "badsfadsf"
True
"ab" < "ac"
True
"abc" < "abb"
False
Lesson discussion
Swap insights and ask questions about Python Temel
Be the first to start the discussion
Ask a question or share your thoughts about this lesson.