how to say hello with name in python code example
Example 1: how to say hello with name in python
name = input("what is your name")
print("Hello "+name)
Example 2: how to say hello in python
print("Hello")
name = input("what is your name")
print("Hello "+name)
print("Hello")