测试题
- 如果有两个单独的 print 语句,如下:
print "What is"
print "your name?"
怎样把所有内容都打印在同一行上?
print "What is " ,"your name"
- 打印时如何增加额外的空行?
print "hello"
print
print "world"
利用print再增加一个空行
实现按列对齐时要使用哪一个特殊打印代码?
使用 \t
使用哪个格式字符串强制按 E 记法打印一个数?
%e %
%.2e %
{0:1e} format(a)```