fork download
  1. name = "Juan Dela Cruz"
  2. age = 20
  3. gpa = 89.5
  4.  
  5. print(f"My name is (name). I am (age) years old, and my GPA is {gpa:.2f}.")
Success #stdin #stdout 0.03s 9308KB
stdin
Standard input is empty
stdout
My name is (name). I am (age) years old, and my GPA is 89.50.