Python 遇到的小问题
2021-02-20 15:18
标签:idt code for 无法 print 语句 使用 运行 为什么 当用一个 print 语句输出多个变量的值,并且需要换行时,发现了一个小问题:换行之后无法对齐。具体问题如下: 运行结果如下图: 这是为什么呢? 原来,没输出一个值后,默认输出一个空格,这时候我们可以使用 sep 参数来修改。 修改之后如下图: 运行结果如下: Python 遇到的小问题 标签:idt code for 无法 print 语句 使用 运行 为什么 原文地址:https://www.cnblogs.com/yytest/p/12681714.htmlf = {"first":"a", "second":"b", "third":"c", "forth":"d"}
print(f["first"], ‘\n‘,f["second"], ‘\n‘, f["third"], ‘\n‘, f["forth"])
f = {"first":"a", "second":"b", "third":"c", "forth":"d"}
print(f["first"], ‘\n‘,f["second"], ‘\n‘, f["third"], ‘\n‘, f["forth"], sep = "")