我需要一些帮助来使我的python脚本同时在python2和python3上运行。 在python3中,当我运行脚本并转到您选择ITAG的部分时,它说:
From the lists above, find the ITAG number of the format you want to convert the video to.
Type the ITAG number here:
Traceback (most recent call last):
File "/home/MrMcTiller/autopytubev2_working.py", line 299, in <module>
Type the ITAG number here: """))
ValueError: could not convert string to float:
>>>
答案 0 :(得分:0)
您似乎正在尝试将空字符串转换为浮点数。在Python3中,float('')
会产生您描述的错误,如果用户仅按回车键来响应输入提示,就会发生该错误。