F-Strings

name = input("Enter your name: ")
print(f"Hello {name}")


F-Strings name = input ( "Enter your name: " ) print ( f"Hello {name} " )