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.
21 lines
181 B
21 lines
181 B
# check REPL allows to continue input
|
|
1 \
|
|
+ 2
|
|
'abc'
|
|
"abc"
|
|
'''abc
|
|
def'''
|
|
"""ABC
|
|
DEF"""
|
|
print(
|
|
1 + 2)
|
|
l = [1,
|
|
2]
|
|
print(l)
|
|
d = {1:'one',
|
|
2:'two'}
|
|
print(d[2])
|
|
def f(x):
|
|
print(x)
|
|
|
|
f(3)
|
|
|