micropython/tests/bytecode/mp-tests/string1.py

12 wiersze
113 B
Python

x = 'abc'
x = "abc"
x = r'abc'
x = 'abc' \
'def'
x = ('abc'
'def')
x = 'ab"c'
x = "ab'c"
x = '''ab'c'''