在Python中以浮点形式读取输入
为了在Python中接受输入,我们使用 input()function,它要求用户输入并返回一个字符串值,无论您输入了什么值,所有值都将被视为字符串值。
考虑以下示例,
# python代码演示示例# of input() function
val1 = input("Enter any value: ")
print("value of val1: ", val1)
print("type of val1: ", type(val1))
val2 = input("Enter another value: ")
print("value of val2: ", val2)
print("type of val2: ", type(val2))
val3 = input("Enter another value: ")
print("value of val3: ", val3)
print("type of val3: ", type(val3))
输出结果
Enter any value: 10value of val1: 10
type of val1: <class 'str'>
Enter another value: 10.23
value of val2: 10.23
type of val2: <class 'str'>
Enter another value: Hello
value of val3: Hello
type of val3: <class 'str'>
参见程序和输出–在这里,我们为val1提供了三个值“ 10”,它是一个整数值,但被视为一个字符串,为val2提供了“ 10.23”,其值是一个浮点值,但被视为一个字符串,为val3提供了“ Hello”,其中是一个字符串值。
如何将输入作为浮点数?
没有这样的方法,可以使用它直接将输入作为浮点数-但是可以使用以下命令将输入字符串转换为浮点数 float() 接受字符串或数字并返回浮点值的函数。
因此,我们使用 input()用于读取输入并将其转换为浮点数的函数float() 功能。
考虑下面的示例,
# python代码进行浮点输入# 读取一个值,打印输入及其类型
val1 = input("Enter any number: ")
print("value of val1: ", val1)
print("type of val1: ", type(val1))
# 读取值,转换为浮点数
# 打印值及其类型
val2 = float(input("Enter any number: "))
print("value of val2: ", val2)
print("type of val2: ", type(val2))
输出结果
Enter any number: 123.456value of val1: 123.456
type of val1: <class 'str'>
Enter any number: 789.123
value of val2: 789.123
type of val2: <class 'float'>
输入两个浮点数并找到它们的和与平均值的示例
# python代码读取两个浮点数# 并找到它们的平均数
num1 = float(input("Enter first number : "))
num2 = float(input("Enter second number: "))
# 加成
add = num1 + num2
# 平均
avg = add/2
print("addition: ", add)
print("average : ", avg)
输出结果
Enter first number : 123.456初步格式点击上传XEnter second number: 789.02
addition: 912.476
average : 456.238
以上是 在Python中以浮点形式读取输入 的全部内容, 来源链接: utcz.com/z/343209.html