美文网首页
python遍历字符串中的字符的代码

python遍历字符串中的字符的代码

作者: 22334 | 来源:发表于2021-11-11 15:23 被阅读0次

    把内容过程中比较常用的内容收藏起来,如下内容是关于python遍历字符串中的字符的内容。

    word = raw_input("Enter a word: ")

    print "nHere's each letter in your word:"

    for letter in word:

        print letter

    相关文章

      网友评论

          本文标题:python遍历字符串中的字符的代码

          本文链接:https://www.haomeiwen.com/subject/csqgzltx.html