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

Python processes floating-point numbers entered by Excel

編輯:Python

The processing code is as follows :

 def relevantInput(self,step):
input_texts=str(step.InputValue) # step.InputValue It's the input box 
if type(step.InputValue) is float: # If the content of the input box is a floating point number 
str_inputvalue = str(step.InputValue).split(".")[1] # Extract the number after the decimal point Such as 1.23 extract 23 to str_inputvalue
if str_inputvalue == "0": # Judge If the content is 0
# params = re.findall(r'\${([\s\S]+?)\}', str(str(step.InputValue).split(".")[0]))
input_texts = str(str(step.InputValue).split(".")[0]) # Extract the number before the decimal point 
else:
# params = re.findall(r'\${([\s\S]+?)\}', str(step.InputValue))
input_texts = str(step.InputValue) # Not for 0 Words , Then extract all normally 
else:
pass

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