You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.1 KiB
58 lines
1.1 KiB
print("" == "")
|
|
print("" > "")
|
|
print("" < "")
|
|
print("" == "1")
|
|
print("1" == "")
|
|
print("" > "1")
|
|
print("1" > "")
|
|
print("" < "1")
|
|
print("1" < "")
|
|
print("" >= "1")
|
|
print("1" >= "")
|
|
print("" <= "1")
|
|
print("1" <= "")
|
|
|
|
print("1" == "1")
|
|
print("1" != "1")
|
|
print("1" == "2")
|
|
print("1" == "10")
|
|
|
|
print("1" > "1")
|
|
print("1" > "2")
|
|
print("2" > "1")
|
|
print("10" > "1")
|
|
print("1/" > "1")
|
|
print("1" > "10")
|
|
print("1" > "1/")
|
|
|
|
print("1" < "1")
|
|
print("2" < "1")
|
|
print("1" < "2")
|
|
print("1" < "10")
|
|
print("1" < "1/")
|
|
print("10" < "1")
|
|
print("1/" < "1")
|
|
|
|
print("1" >= "1")
|
|
print("1" >= "2")
|
|
print("2" >= "1")
|
|
print("10" >= "1")
|
|
print("1/" >= "1")
|
|
print("1" >= "10")
|
|
print("1" >= "1/")
|
|
|
|
print("1" <= "1")
|
|
print("2" <= "1")
|
|
print("1" <= "2")
|
|
print("1" <= "10")
|
|
print("1" <= "1/")
|
|
print("10" <= "1")
|
|
print("1/" <= "1")
|
|
|
|
# this tests an internal string that doesn't have a hash with a string
|
|
# that does have a hash, but the lengths of the two strings are different
|
|
import sys
|
|
print(sys.version == 'a long string that has a hash')
|
|
|
|
# this special string would have a hash of 0 but is incremented to 1
|
|
print('Q+?' == 'Q' + '+?')
|
|
|