赞
踩
[root@localhost py]# cat For002.py
#name = ['heyiuan','yangfan','yuanxuechun']
#for do in name:
# print(do)
#county = ['中国', '美国', '英国', '加拿大']
#for CO in county:
# print(CO)
name = ['heyiuan','yangfan','yuanxuechun','zhaorenjie']
for NA in name:
#print("NA = ", NA)
print("初中的同学: " ,NA)
[root@localhost py]# python For002.py
初中的同学: heyiuan
初中的同学: yangfan
初中的同学: yuanxuechun
初中的同学: zhaorenjie
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。