xxxxxxxxxx
value='Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque nisl eros, ", '\
'pulvinar facilisis justo mollis, auctor consequat urna. Morbi a bibendum metus. '\
'Donec scelerisque sollicitudin enim eu venenatis. Duis tincidunt laoreet ex, '\
'in pretium orci vestibulum eget. Class aptent taciti sociosqu ad litora torquent'\
'per conubia nostra, per inceptos himenaeos. Duis pharetra luctus lacus ut '\
'vestibulum. Maecenas ipsum lacus, lacinia quis posuere ut, pulvinar vitae dolor.'
xxxxxxxxxx
s = """ this is a very
long string if I had the
energy to type more and more """
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: