知行编程网知行编程网  2022-09-30 06:00 知行编程网 隐藏边栏  69 
文章评分 0 次,平均分 0.0
导语: 本文主要介绍了关于python中str()函数转换字符串的相关知识,包括python len函数,以及string函数这些编程知识,希望对大家有参考作用。

python中的str()函数转换字符串


1、方法说明

如果你只想将 Python 对象转换为文字字符串,则 str() 函数将返回到值的人类可读表示。



2、语法

class str(object='')


3、实例

>>> s = 'Hello, world.'
>>> str(s)
'Hello, world.'
>>> repr(s)
"'Hello, world.'"
>>> str(1/7)
'0.14285714285714285'
>>> x = 10 * 3.25
>>> y = 200 * 200
>>> s = 'The value of x is ' + repr(x) + ', and y is ' + repr(y) + '...'
>>> print(s)
The value of x is 32.5, and y is 40000...
>>> # The repr() of a string adds string quotes and backslashes:
... hello = 'hello, world\n'
>>> hellos = repr(hello)
>>> print(hellos)
'hello, world\n'
>>> # The argument to repr() may be any Python object:
... repr((x, y, ('spam', 'eggs')))
"(32.5, 40000, ('spam', 'eggs'))"

本文为原创文章,版权归所有,欢迎分享本文,转载请保留出处!

知行编程网
知行编程网 关注:1    粉丝:1
这个人很懒,什么都没写
扫一扫二维码分享