Discuss / Python / for遍历

for遍历

Topic source

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

for i in L:

    print(f"Hello, {i}!\n")


  • 1

Reply