python 读取整数_在Python中将输入读取为整数

在Python中,input()函数会返回一个字符串值。若要将用户输入转换为整数,可以使用int()函数。文章通过示例展示了如何直接读取并转换输入的整数,还提及了相关主题如限制用户只输入整数和不同格式的数字输入。
摘要由CSDN通过智能技术生成

python 读取整数

To take input in Python, we use input() function, it asks for an input from the user and returns a string value, no matter what value you have entered, all values will be considered as strings values.

要使用Python进行输入,我们使用input()函数 ,它要求用户输入并返回字符串值,无论您输入了什么值,所有值都将被视为字符串值。

Consider the following example,

考虑以下示例,

# python code to demonstrate example
# 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))

Output

输出量

Enter any value: 10
value 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'>

See the program and output – Here, we provided three value "10" for val1 which is an integer value but considered as a string, "10.23" for val2 which is a float value but considered as a string, "Hello" for val3 which is a string value.

参见程序和输出–在这里,我们为val1提供了三个值“ 10” ,它是一个整数值,但被视为字符串,为val2提供了 “ 10.23” ,它是一个浮点值,但被视为一个字符串,为val3提供了 “ Hello” ,其中是一个字符串值。

如何将输入作为整数? (How to take input as integer?)

There is no such method, that can be used to take input as an integer direc

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值