用python编写一个简单的小程序:将文字对应的索引打印出来. test=input('>>>') print(test) l=len(test) print(l) r=range(l) for item in r: print(item,test[item]) 以上为了练习步骤繁琐,下面程序比较简单. test=input('>>>') for item in range(len(test)): print(item,test[item]) 其实两个程序功能原理完全一
原文链接作者 # -*- coding: utf-8 -*- import pyttsx3 engine = pyttsx3.init() with open("all.txt",'r',encoding='utf-8') as f: while 1: line = f.readline() print(line, end = '') engine.say(line) engine.runAndWait() import pyttsx3 with open('all.txt','r