如何在Python中将字符串转换为数字?

2023年 8月 27日 61.7k 0

如何在Python中将字符串转换为数字?

要将字符串转换为数字,有多种方法。让我们一一看看。

使用 int() 将字符串转换为数字

示例

在此示例中,我们将使用 int() 方法将字符串转换为数字 -

# String to be converted
myStr = "200"

# Display the string and it's type
print("String = ",myStr)
print("Type= ", type(myStr))

# Convert the string to integer using int() and display the type
myInt = int(myStr)
print("nInteger = ", myInt)
print("Type = ", type(myInt))

登录后复制

输出

String = 200
Type=

Integer = 200
Type =

登录后复制

使用 float() 将字符串转换为数字

示例

在此示例中,我们将使用 float() 方法将字符串转换为浮点数,然后使用 int() 方法将浮点数转换为整数 -

# String to be converted
myStr = "500"

# Display the string and it's type
print("String = ",myStr)
print("Type= ", type(myStr))

# Convert the string to float
myFloat = float(myStr)
print("nFloat = ", myFloat)
print("Type = ", type(myFloat))

# Convert the float to int
myInt = int(myFloat)
print("nInteger = ", myInt)
print("Type = ", type(myInt))

登录后复制

输出

String = 500
Type=

Float = 500.0
Type =

Integer = 500
Type =

登录后复制

将字符串转换为数字base10和base8

示例

在此示例中,我们将使用带有基本参数的 int() 将字符串转换为数字。

# String to be converted
myStr = "500"

# Display the string and it's type
print("String = ",myStr)
print("Type= ", type(myStr))

# Convert the string to int
myInt1 = int(myStr)
print("nInteger (base10) = ", myInt1)
print("Type = ", type(myInt1))

# Convert the string to int
myInt2 = int(myStr, base=8)
print("nInteger (base8) = ", myInt2)
print("Type = ", type(myInt2))

登录后复制

输出

String = 500
Type=
Integer (base10) = 500
Type =

Integer (base8) = 320
Type =

登录后复制

以上就是如何在Python中将字符串转换为数字?的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!

相关文章

JavaScript2024新功能:Object.groupBy、正则表达式v标志
PHP trim 函数对多字节字符的使用和限制
新函数 json_validate() 、randomizer 类扩展…20 个PHP 8.3 新特性全面解析
使用HTMX为WordPress增效:如何在不使用复杂框架的情况下增强平台功能
为React 19做准备:WordPress 6.6用户指南
如何删除WordPress中的所有评论

发布评论