我如何會刪除<span id="balance">1 268</span>
的空間,並使其成爲int
Python中移除字符串空間使其轉換成int
代碼:
Balance_afterWinORLoseBet.replace(" ", "")
Balance_afterWinORLoseBet = int(balance_new.text) #Makes new var, turns it into int.
if "10.1" in countdown_timer.text: #
Balance_afterPlaceBet.replace(" ", "")
Balance_afterPlaceBet = int(balance_old.text) #Makes new var, turns it into int.
Error
:
Balance_afterWinORLoseBet = int(balance_new.text) #Makes new var, turns it into int. ValueError: invalid literal for int() with base 10: '1 268'
只是想指出的是,這不會對標籤的工作。 – ssundarraj
強烈建議僅限代碼解答。請添加一些關於代碼正在做什麼以及它如何回答問題的描述。另外,將代碼格式化爲代碼。 – JeffC