xxxxxxxxxx
exec('x = 10\nfor i in range(5):\n if x%2 ==0: print(i)\n else: print(x)\n x = x-1')
xxxxxxxxxx
# Implicit 隱式的語法
## list, set, tuple, dict, function args/params
a= [1,2,3]
a = [1
,2
,3]
def my_func(
a, #comments
b, #comments
c
)
# Explicit 顯式的語法
## using `\` conact two line
if a \
and b \
and c: