Discuss / Python / 交作业

交作业

Topic source
#for
for name in L:
 print("Hello,",name)

#while
n=2
while n>=0:
 print("Hello,",L[n])
 n=n-1

  • 1

Reply