mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +02:00
22 lines
265 B
Python
22 lines
265 B
Python
# 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')
|