You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
161 B
14 lines
161 B
'abc'
|
|
class f:
|
|
u"123"
|
|
pass
|
|
x = 'abc'
|
|
x = u"abc"
|
|
x = u"ab\\c"
|
|
x = r"ab\\c"
|
|
x = b"abc"
|
|
x = rb"abc"
|
|
x = b"ab\\c"
|
|
x = rb"ab\\c"
|
|
x = """abc"""
|
|
x = b"""abc"""
|
|
|