ruff/crates/ruff_python_parser/resources/valid/expressions/string.py

18 lines
163 B
Python

'Hello World'
"😎"
'Foo' 'Bar'
(
'A'
'B'
'C'
)
'''Olá, Mundo!'''
"""ABCDE"""
(
'''aB'''
'''cD'''
)
b'hello world'
b'bytes' b'concatenated'