name = "Steven" # Using f-strings print(f"Hi, {name}!") # Using format() print("Hi, {}!".format(name))