micropython/tests/basics/string1.py

22 wiersze
265 B
Python
Czysty Zwykły widok Historia

# basic strings
x = 'abc'
print(x)
x += 'def'
print(x)
print('123' + "456")
2014-01-05 10:47:51 +00:00
2014-01-20 22:27:33 +00:00
print('123' * 5)
2014-01-05 10:47:51 +00:00
# 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')