這個代碼如何換行?
a=('Red the rosy clouds in the rain,')
b=('hello baby')
c=('i want to play with you')
d=('friendship does not drain by far.')
L=[a,b,c,d]
L.pop(1)
L.insert(-2,'the sincere friendship,')
L[2]=('after don\'t running water resistance by stone,')
e=('')
t=(tuple(x for x in range (1,4)))
print(t,e or 'dear',L)
2020-02-22
最簡單的方法就是:
print t
print e or 'dear'
print L