我需要一些帮助来使我的python脚本正常工作

时间:2018-10-10 14:18:58

标签: python python-3.x python-2.7

我需要一些帮助来使我的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: 
>>> 

Here is a link to my python script.

1 个答案:

答案 0 :(得分:0)

您似乎正在尝试将空字符串转换为浮点数。在Python3中,float('')会产生您描述的错误,如果用户仅按回车键来响应输入提示,就会发生该错误。