python print format的用法是什么

avatar
作者
筋斗云
阅读量:1

Python中的print格式化用于将变量的值插入到字符串中,以便在输出时显示。它有以下几种用法:

  1. 使用占位符:%:在字符串中使用占位符(%s、%d、%f等),然后使用%操作符将变量的值插入到字符串中。例如:
name = "Alice" age = 25 print("My name is %s and my age is %d" % (name, age)) 
  1. 使用format函数:使用花括号作为占位符,在字符串中使用format函数,并在函数中传入要插入的变量。例如:
name = "Alice" age = 25 print("My name is {} and my age is {}".format(name, age)) 
  1. 使用f-string:在字符串前加上字母"f",然后在字符串中使用花括号作为占位符,并在花括号内写入要插入的变量。例如:
name = "Alice" age = 25 print(f"My name is {name} and my age is {age}") 

这些方法都可以用来格式化打印输出,根据具体的需求选择适合的方法。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!