发布网友 发布时间:2024-10-01 17:27
共4个回答
热心网友 时间:2024-10-17 18:08
word = input("input your word:")如果你说的输出是return的话,改为
def a():热心网友 时间:2024-10-17 18:10
words=input("Input the word:")热心网友 时间:2024-10-17 18:08
以下代码调试通过:
from pip.backwardcompat import raw_input
word_given = raw_input('please give a word for test:')
word_sep = [] # 列表
word_sep = word_given
for i in range(0, len(word_sep)):
print(word_sep[i], '', end='')
运行效果:
热心网友 时间:2024-10-17 18:03
把字符串拆分为字节数组 ,遍历字节数组