python-換行

天子骄龙發表於2024-07-27

a=10+\
    20+\
    30       #\是換行符

print(a)

b=(10+
   20+
   30)     #括號換行
print(b)

相關文章