fork(1) download
  1. username="xiaoming"
  2. age=18
  3. hello=f"我的名字叫{username},今年{age}岁."
  4. print(hello)
  5.  
  6.  
Success #stdin #stdout 0.07s 14016KB
stdin
Standard input is empty
stdout
我的名字叫xiaoming,今年18岁.