python for循环示例

示例:

编辑1个文件,命名为magicians.py。

  1 magicians=['alice','david','carolina']
  2 for magician in magicians:
  3  print(magician.title()+ ", that was a great trick!")
  4  print("i can't wait to see your next trick, "+ magician.title()+".\n")
  5 print("thank you,everyone.that was a great magic show!")

运行结果如下:

[root@centos7 python]# python36 magicians.py 
Alice, that was a great trick!
i can't wait to see your next trick, Alice.

David, that was a great trick!
i can't wait to see your next trick, David.

Carolina, that was a great trick!
i can't wait to see your next trick, Carolina.

thank you,everyone.that was a great magic show!

注意事项:

1.注意缩进!避免错误的缩进。

2.不要遗漏for循环的冒号!

猜你喜欢

转载自blog.csdn.net/zsx0728/article/details/80510369