Files
Core2forAWS-MicroPython/tests/cmdline/repl_cont.py
T

35 lines
288 B
Python
Raw Normal View History

# check REPL allows to continue input
1 \
+ 2
2015-09-18 18:46:05 +01:00
'"'
"'"
'\''
"\""
'\'('
"\"("
print("\"(")
print('\'(')
print("\'(")
print('\"(')
'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):
2015-08-20 10:34:22 +01:00
print(x)

f(3)
if1=1
if1 = 2
print(if1)