微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

如何在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=  <class 'str'>

Integer =  200
Type =  <class 'int'>

使用 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=  <class 'str'>

Float =  500.0
Type =  <class 'float'>

Integer =  500
Type =  <class 'int'>

字符串转换为数字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=  <class 'str'>
Integer (base10) =  500
Type =  <class 'int'>

Integer (base8) =  320
Type =  <class 'int'>

以上就是如何在Python中将字符串转换为数字?的详细内容,更多请关注编程之家其它相关文章

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐