【说站】python中str()函数转换字符串
2024-10-18
37
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'))"
以上就是python中str()函数转换字符串的方法,希望对大家有所帮助。更多Python学习指路:python基础教程
赞一波!
相关文章
- 【说站】python数值类型的使用整理
- 【说站】python如何用循环遍历分离数据
- 【说站】Python如何实现字符串排序
- 【说站】python判断变量的方法对比
- 【说站】Python如何对多个sheet表进行整合?
- 【说站】python遍历查看csv文件
- 【说站】Python如何删除csv中的内容
- 【说站】python标记删除如何实现?
- 【说站】python自由变量是什么
- 【说站】Python如何用下标取得列表的单个值
- 【说站】Python切片获取列表多个值
- 【说站】python变量如何在作用域使用
- 【说站】Python如何在列表中添加新值
- 【说站】Python中JSON数据如何读取
- 【说站】Python装饰器的应用场景
- 【说站】Python threading模块的常用方法
- 【说站】Python map接收参数的探究
- 【说站】Python如何自定义类继承threading.Thread
- 【说站】java内置函数式接口有哪些?
- 【说站】python中random模块求随机数
文章评论
评论问答