【说站】python如何打印字符串
2024-11-15
26
python如何打印字符串
在Python中,字符串是最常用的数据类型。引号('或')可用于创建字符串。
一、打印字符串
1.__str__主要应用于print函数以及字符串函数str的转换操作
2.__repr__应用于所有输出操作,如果有print以及str操作并定义__str__,则会以__str__为准
3.__repr__与 __str__均未定义的时候,默认打印的是输出对象地址信息
二、实例
# str.pyclass DisplayClass: """ __repr__ is used everywhere, except by print and str when a __str__ is defined. __str__ to support print and str exclusively """ def __repr__(self): return "display __repr__ class" def __str__(self): return "display __str__ class"# 使用命令行的形式打印输出 2.x & 3.x 输出效果一致,以2.x作为截图>>> d = DisplayClass()>>> d # 调用repr>>> print(d) # 调用str>>> print(repr(d)) # 调用repr>>> print(str(d)) # 调用str
字符串相关知识点,推荐访问:字符串
以上就是python打印字符串的方法,希望对大家有所帮助。更多Python学习指路:python基础教程
更新于:23天前赞一波!2
相关文章
- 【说站】python tqdm有哪些用法
- 【说站】python正态分布中的normal函数
- 【说站】python socket连接客户端的方法
- 【说站】python socketserver处理客户端的流程
- 【说站】python TCP和UDP协议的区别分析
- 【说站】python if三元表达式如何使用
- 【说站】python自定义进度条显示信息
- 【说站】python线程阻塞的解决
- 【说站】python binomial生成二项分布随机数
- 【说站】python二项分布的概率使用
- 【说站】python计数排序法是什么
- 【说站】python归并排序是什么
- 【说站】python使用choice生成随机数
- 【说站】python归并排序的实现原理
- 【说站】python希尔排序的使用原理
- 【说站】python Task如何在协程调用
- 【说站】python事件循环如何使用?
- 【说站】await在python协程函数的使用
- 【说站】python使用jinja2进行渲染
- 【说站】python统计字符串字符出现次数
文章评论
评论问答