format要怎么用啊?
乘法口诀的程序中用到的format ,它有什么用法呢?里边的字符都不需要转换的吗?乘号*,也不需要加引号,等号也不需要加引号。 print("{} * {} = {}".format(1, 2, 1 * 2))
print("{} * {} = {}".format(4, 5, 4 * 5))
>>> 结果:
1 * 2 = 2
4 * 5 = 20 数字会自动放入 {} 里,一一对应
https://www.cnblogs.com/lvcm/p/8859225.html
https://www.runoob.com/python/att-string-format.html 百度一下:python print format 例子??发现不是
等等,应该是 “string 99cfb {}*{}={}”.format()
哦,是字符串的一种方法而已,那就 再百度一下:python3 str.format
……嗯,嗯,原来如此
OK
{:10_297:} Daniel_Zhang 发表于 2021-4-6 22:47
数字会自动放入 {} 里,一一对应
https://www.cnblogs.com/lvcm/p/8859225.html
谢谢 {:5_95:} 龙舞九天 发表于 2021-5-9 20:44
你查看的问题也是和我一样,开始是不明白的吗? 江湖散人 发表于 2021-5-9 22:29
你查看的问题也是和我一样,开始是不明白的吗?
对呀! 好帖子 czzhbq 发表于 2021-8-11 22:46
好帖子
链接里的内容确实比较全!
页:
[1]