Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
自从我开始学习 Python 并有几个问题以来,这才几天。
为什么我们在 python 中使用格式化字符串,例如: %s和%d?
%s
%d
谁能告诉我更多关于格式化字符串及其作用的信息?
%s格式化风格来自 Cprintf函数族的传统。Python 3 引入了一种新的格式化语法,它与 Java 格式化 API 更相似,但 printf 样式的格式化在程序员中仍然很流行。
printf
检查文档。