在Python中,format()函数可以使用位置参数或关键字参数来进行参数传递。下面是两种方式的示例:
name = "Alice"
age = 30
sentence = "My name is {} and I am {} years old".format(name, age)
print(sentence)
name = "Bob"
age = 25
sentence = "My name is {name} and I am {age} years old".format(name=name, age=age)
print(sentence)
无论是使用位置参数还是关键字参数,都可以在format()函数中指定要插入的变量的位置或名称,并用大括号{}来表示要插入的变量的位置。