江湖散人 发表于 2021-4-6 22:36:19

format要怎么用啊?

乘法口诀的程序中用到的format ,它有什么用法呢?里边的字符都不需要转换的吗?
乘号*,也不需要加引号,等号也不需要加引号。

Daniel_Zhang 发表于 2021-4-6 22:45:30

print("{} * {} = {}".format(1, 2, 1 * 2))

print("{} * {} = {}".format(4, 5, 4 * 5))

>>> 结果:
1 * 2 = 2
4 * 5 = 20

Daniel_Zhang 发表于 2021-4-6 22:47:20

数字会自动放入 {} 里,一一对应

https://www.cnblogs.com/lvcm/p/8859225.html

https://www.runoob.com/python/att-string-format.html

阿奇_o 发表于 2021-4-6 22:51:19

百度一下:python print format 例子??发现不是

等等,应该是 “string 99cfb {}*{}={}”.format()   
哦,是字符串的一种方法而已,那就 再百度一下:python3 str.format

……嗯,嗯,原来如此
OK
{:10_297:}

江湖散人 发表于 2021-4-6 22:59:15

Daniel_Zhang 发表于 2021-4-6 22:47
数字会自动放入 {} 里,一一对应

https://www.cnblogs.com/lvcm/p/8859225.html


谢谢

龙舞九天 发表于 2021-5-9 20:44:06

{:5_95:}

江湖散人 发表于 2021-5-9 22:29:42

龙舞九天 发表于 2021-5-9 20:44


你查看的问题也是和我一样,开始是不明白的吗?

龙舞九天 发表于 2021-5-13 18:16:57

江湖散人 发表于 2021-5-9 22:29
你查看的问题也是和我一样,开始是不明白的吗?

对呀!

czzhbq 发表于 2021-8-11 22:46:35

好帖子

江湖散人 发表于 2021-8-12 00:29:55

czzhbq 发表于 2021-8-11 22:46
好帖子

链接里的内容确实比较全!
页: [1]
查看完整版本: format要怎么用啊?