0
Need help first step??
Create a program that asks 'what is your name 'then says hello and repeats the user s name with exclamation. Ex. If the input is 'Harriet' The output will be 'Hello Harriet!'
8 ответов
+ 3
print("Hello",input("What is your name?")+"!")
Or
print(f"Hello {input('What is your name?')}!")
# Hope this helps
+ 2
Maybe its better you would start with “Python for beginners”
+ 2
Hey AhMaD Ali
Just study one more time !
+ 1
Thirt13n thx bro I try it but still learnibg
0
0
name = input("Enter your name: ")
print("Hello, " + name)
0
Angela he say failed??
0
name = input ("Your name: ")
print ("Hello",name,"!")