2023年11月3日

python PEP

摘要: python 库地址: PEP 0 – Index of Python Enhancement Proposals (PEPs) | peps.python.org 阅读全文

posted @ 2023-11-03 23:32 kitesong 阅读(3) 评论(0) 推荐(0) 编辑

python 字符串格式化

摘要: Python字符串的格式化分为两种:1)% 方式 2)str.format() 方式。 str.format() 是比 % 较新的方式, 大多数的 Python 代码仍然使用 % 操作符。但最终会被str.format()代替,推荐使用str.format() 1、% 方式 1)用法 %[(name 阅读全文

posted @ 2023-11-03 23:30 kitesong 阅读(15) 评论(0) 推荐(0) 编辑

导航