程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python處理Excel輸入的浮點數

編輯:Python

處理代碼如下:

 def relevantInput(self,step):
input_texts=str(step.InputValue) # step.InputValue 是輸入框
if type(step.InputValue) is float: # 如果輸入框內容是浮點數
str_inputvalue = str(step.InputValue).split(".")[1] # 提取小數點後面的數字 如1.23 提取23給 str_inputvalue
if str_inputvalue == "0": # 判斷 內容如果為0
# params = re.findall(r'\${([\s\S]+?)\}', str(str(step.InputValue).split(".")[0]))
input_texts = str(str(step.InputValue).split(".")[0]) # 提取小數點前面數字
else:
# params = re.findall(r'\${([\s\S]+?)\}', str(step.InputValue))
input_texts = str(step.InputValue) # 不為0的話,那就正常全部提取
else:
pass

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved