python - 值错误: could not convert string to float: '' in Python 3

标签 python python-3.x selenium split floating-point

我正在用 Python 编写一个小机器人,但遇到了问题。这似乎是一个常见问题,但我从未见过它在我所处的情况下被问到。

好的,这是提出问题的代码:

old_values = float((removeprc(browser.find_element_by_xpath('//*[@id="draggableNavRightResizable"]/section/section[2]/section[1]/div[3]/ul/li[1]/div[2]/div[6]/span').text)))

browser.find_element_by_xpath('//*[@id="draggableNavRightResizable"]/section/section[2]/section[1]/div[3]/ul/li[1]/div[2 ]/div[6]/span').text) 是一个selenium工具,用于获取网站的值。正如您稍后将看到的,检索到的元素是一个应该与 float() 一起使用的数字 “remove prc”是我创建的一个小函数,用于删除数字的%,如下:

def removeprc(string): #removes the % from a string 
    string = str(string)
    list = string.split('%')
    string = " ".join(list)
    
    return string

这可能不是最好的方法,但当我单独测试时它是有效的。

无论如何,这是我运行整个代码时得到的结果

loading page ...
page loaded
acquiring values ...
values acquired
running eth trade
-0.37
Traceback (most recent call last):
  File "C:\Users\pc adam\Documents\EISTI\algoprog\perso\python\fichiers\btc\ETHtradingbotV1.py", line 138, in <module>
    profit = float(browser.find_element_by_xpath('/html/body/div[3]/section[16]/section[2]/section[2]/section[2]/div/div[1]/table/tbody/tr/td[15]/span').text)
ValueError: could not convert string to float: ''

前5行没用。在第六行,我打印了我想要获取 float() 的内容 的。正如您所看到的,它应该可以工作并且......它确实可以!有时。

这是最奇怪的事情,它有一半的时间运行得很好! 我在互联网上读到,如果您尝试 float() 不是数字的东西或者其中有奇怪的东西(例如空格),就会发生这种情况。正如您所看到的,我认为这里的情况并非如此。

当我尝试通过运行程序的简化版本来隔离问题时,如下所示:

a = "-0.06%"
def removeprc(string): #removes the % from a string 
    string = str(string)
    list = string.split('%')
    string = " ".join(list)
    return string

b = float(removeprc(a))
print(b)

它输出-0.06并且工作完美???

所以我真的被困在这里了。它应该有效,但事实并非如此。更糟糕的是,它有时会无缘无故地起作用。当我隔离问题时,它工作得很好。

任何帮助将不胜感激!

哦,如果您想查看整个代码,就在这里:https://github.com/Madaxuorel/proj-ethTB/blob/master/ETHtradingbotV1.py

最佳答案

此错误消息...

ValueError: could not convert string to float: ''

...暗示 Python 解释器无法将字符串转换为 float 。

<小时/>

你们已经足够接近了。 text 方法将返回一个字符串并去掉%,而不是string.split('%') 你想要list = string.split('%')[0]

一个例子:

my_percentage = "99%"
my_string_num = my_percentage.split("%")[0]
print(my_string_num)

打印:

99

此外,find_element_by_xpath() 将仅识别单个元素,并且使用文本您将获得单个字符串,因此 string = "".join(list) 似乎是多余的。

因此,要有效地去除 %,将 string 转换为 float 并打印,您的有效代码行将是:

print(float(browser.find_element_by_xpath('//*[@id="draggableNavRightResizable"]/section/section[2]/section[1]/div[3]/ul/li[1]/div[2]/div[6]/span').text.split("%")[0]))
<小时/>

更新

您仍然会看到错误,因为调用该代码行时,具有所需文本的元素尚未在 DOM 内呈现。作为解决方案,您需要为 visibility_of_element_ located() 引入 WebDriverWait,并且可以使用以下 Locator Strategy :

print(float(WebDriverWait(driver, 20).until(EC.visibility_of_element_located((By.XPATH, "//*[@id='draggableNavRightResizable']/section/section[2]/section[1]/div[3]/ul/li[1]/div[2]/div[6]/span"))).text.split("%")[0]))

注意:您必须添加以下导入:

from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC

关于python - 值错误: could not convert string to float: '' in Python 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60291334/

相关文章:

python - 弹出错误: "[Errno 2] No such file or directory" when calling shell function

python - 如何在 Python3 中迭代 2 个列表,但如果列表 1 已耗尽,则再次迭代它

java - 防止在 selenium webdriver 测试中加载外部内容

javascript - 如何单独从 webelement 中检索可见文本?

Python 认为单元格值是日期时间,但事实并非如此

python - 打印文件中最后一个匹配行

python - 通过拆分键对字典进行排序

python - 计算两个字符串之间的唯一 ID 重叠

python - PyQt4 到 PyQt5 怎么样?

java - 如何在 Selenium Java 中转换 Katalon 脚本?