使用python编写 Python的输出格式
时间: 2023-03-23 13:04:57 浏览: 98
Python的输出格式可以使用print函数来实现,例如:
print("Hello World!") # 输出Hello World!
print("My name is", "John") # 输出My name is John,注意逗号会自动添加空格
print("The result is %.2f" % 3.14159) # 输出The result is 3.14,%.2f表示保留两位小数
print("The answer is {}".format(42)) # 输出The answer is 42,{}表示占位符
print(f"The value of x is {x}") # 输出The value of x is 10,f表示格式化字符串,可以直接使用变量名
阅读全文