mirror of
https://github.com/micropython/micropython.git
synced 2025-09-04 17:00:30 +02:00
12 lines
113 B
Python
12 lines
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'''
|