Line break and line continuation in Python
Back slash (\) could be used for line break and line continuation in Python!
a = 12 + 13 + 14 + 15
is same as
a = 12 + 13 \
+ 14 + 15
Thanks,
Have fun!
a = 12 + 13 + 14 + 15
is same as
a = 12 + 13 \
+ 14 + 15
Thanks,
Have fun!
댓글
댓글 쓰기