文字列の文字を 1 つずつ入力するスクリプトを作成したい
def autotype(info):
count = len(info) #Countign number of letters of the string
splitlist = list(info)
i = int(count) #getting an error on this line! it accept i=int(0) but my loop doesnt work because of this
while i>0:
sys.stdout.write(splitlist[i])
time.sleep(0.2)
i -= 1
info = str("hello world")
autotype(info)
エラーは次のとおりです: リスト インデックスが範囲外です。どうすれば修正できますか?