我想通过用户输入 while 循环,我想下载最终结果
I want to take input for while loop by user and i want download the end result
实际上,我在 python 中编写了一个程序来创建一个音频循环播放器,我想从用户那里获取输入,而不是循环播放,我想下载文件,有人可以帮助我吗
count = 0
while count < 108:
import playsound
import time
playsound.playsound("C:\Users\admin\Desktop\SAMPLE\m1.mp3" )
time.sleep(10)
count = count+1
您可以只使用 input()
函数从用户那里获取输入,然后 int()
将其转换为整数(默认输入类型是字符串)。
import playsound
import time
user_input = int(input('enter number: '))
count = 0
while count < user_input:
playsound.playsound("C:\Users\admin\Desktop\SAMPLE\m1.mp3" )
time.sleep(10)
count = count+1
实际上,我在 python 中编写了一个程序来创建一个音频循环播放器,我想从用户那里获取输入,而不是循环播放,我想下载文件,有人可以帮助我吗
count = 0
while count < 108:
import playsound
import time
playsound.playsound("C:\Users\admin\Desktop\SAMPLE\m1.mp3" )
time.sleep(10)
count = count+1
您可以只使用 input()
函数从用户那里获取输入,然后 int()
将其转换为整数(默认输入类型是字符串)。
import playsound
import time
user_input = int(input('enter number: '))
count = 0
while count < user_input:
playsound.playsound("C:\Users\admin\Desktop\SAMPLE\m1.mp3" )
time.sleep(10)
count = count+1