0
The input is (what is your name:Hello (the name what I wrote)
name = ("what is your name: ") print("Hello "+name)
2 Answers
+ 2
name = input("what is your name: ")
0
ZIZO Abd alkawy here is a really basic code
print("What is your name?", end=" ")
x = input()
print(x)
print()
print(f"Hello your name is {x}")