Discuss / Python / python第三天

python第三天

Topic source

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

for l in L:

  print(f"Hello, {l.title()}!")


  • 1

Reply