Posted in 面试题 onJuly 19, 2016
Python的for循环可以循环所有序列(一个list或者string), 如:
a = [abc, bcde, efghi, hello word]
for i in a:
print (i)
print (len(i))
代码在Python3.0下调试通过
a = [abc, bcde, efghi, hello word]
for i in a:
print (i)
print (len(i))
代码在Python3.0下调试通过
用Python写一个for循环的例子
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Tags in this post...
Reply on: @reply_date@
@reply_contents@