Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 240 Bytes

File metadata and controls

13 lines (11 loc) · 240 Bytes
  1. 参数是字典的时候
data = {'day':'Monday','office':'Home'}
print("One {day} I was working in {office}".format(**data))
  1. 普通参数
name = "cpc"
age = 10
print(f"Hi,i am {name} and i {age + 1} old")