mirror of
https://github.com/micropython/micropython.git
synced 2026-01-21 19:37:20 +01:00
13 lines
106 B
Python
13 lines
106 B
Python
# basic strings
|
|
|
|
x = 'abc'
|
|
print(x)
|
|
|
|
x += 'def'
|
|
print(x)
|
|
|
|
print('123' + "456")
|
|
|
|
# iter
|
|
print(list('str'))
|