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.

22 lines
265 B

# basic strings
x = 'abc'
print(x)
x += 'def'
print(x)
print('123' + "456")
print('123' * 5)
# iter
print(list('str'))
print('123' + '789' == '123789')
print('a' + 'b' != 'a' + 'b ')
# Not implemented so far
# print('1' + '2' > '2')
# print('1' + '2' < '2')