Discuss / Python / 作业~~

作业~~

Topic source

iLiDong

#1 Created at ... [Delete] [Delete and Lock User]

for循环

for name in L:
    print('hello,' + name +'!')

while循环

n=0
while n < len(L):
    print('Hello,' + L[n])
    n = n+1

  • 1

Reply