Discuss / Python / 打卡

打卡

Topic source

L = ['Bart', 'Lisa', 'Adam']

for l in L:

    print(l)

n = 0

while n<len(L):

    print(L[n])

    n=n+1


  • 1

Reply