python遍历字符串中的字符的代码
2021-11-11 本文已影响0人
22334
把内容过程中比较常用的内容收藏起来,如下内容是关于python遍历字符串中的字符的内容。
word = raw_input("Enter a word: ")
print "nHere's each letter in your word:"
for letter in word:
print letter
把内容过程中比较常用的内容收藏起来,如下内容是关于python遍历字符串中的字符的内容。
word = raw_input("Enter a word: ")
print "nHere's each letter in your word:"
for letter in word:
print letter