micropython/tests/cmdline/repl_cont.py.exp

58 wiersze
601 B
Plaintext

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

MicroPython \.\+ version
Use \.\+
>>> # check REPL allows to continue input
>>> 1 \\\\
... + 2
3
>>> '"'
'"'
>>> "'"
"'"
>>> '\\\\''
"'"
>>> "\\\\""
'"'
>>> '\\\\'('
"'("
>>> "\\\\"("
'"('
>>> print("\\\\"(")
"(
>>> print('\\\\'(')
'(
>>> print("\\\\'(")
'(
>>> print('\\\\"(')
"(
>>> 'abc'
'abc'
>>> "abc"
'abc'
>>> '''abc
... def'''
'abc\\\\ndef'
>>> """ABC
... DEF"""
'ABC\\\\nDEF'
>>> print(
... 1 + 2)
3
>>> l = [1,
... 2]
>>> print(l)
[1, 2]
>>> d = {1:'one',
... 2:'two'}
>>> print(d[2])
two
>>> def f(x):
... print(x)
... 
>>> f(3)
3
>>> if1=1
>>> if1 = 2
>>> print(if1)
2
>>>