+ 2
Write a program that inputs the name of the user and prints it in the given format
Example Input: Sachin Output: Hello Sachin, glad to meet you!
19 Answers
+ 5
//input
name = input()
//output
print("Hello " + name + ", glad to meet you!")
+ 2
print is explained in one of the first modules, if you are having difficulties, feel free to read the lessons again!
+ 2
name = input()
print("Hello",name,",glad to meet you")
Hope it's helpful for you
+ 2
Username=input ("Enter user name:\n" )
print ("Hello",Username,"gald to meet you")
+ 1
This is a program if you input the name and print that statement ( i written in above), and if you don't know how we take that input then learn python in Sololearn then you have a basic knowledge of beginner programming to advance.
+ 1
ุฏู
ูุชุญ
+ 1
Name = input()
Print(f'Hello {Name}, glad to meet you!')
+ 1
input = ("Please enter your name: ")
print("Hello", input, "glad to meet you")
+ 1
Plz enter program here
0
I have zero knowledge of programming
0
Plz input programming
0
ู
ูุชุญ
0
val = input("Enter your value: ")
print(val)
0
Please study the lessons here in sololearn and don't just copy and paste your answers.
0
I belive it can simply be done with a small knowladge of variables and input output with python
0
name=input()
print("Hello" +name+", glad to meet you!")
0
MorpheusGranger Nice example, however python single line comments are identified with a hash symbol #
# input
name = input()
# output
print("Hello " + name + ", glad to meet you!")
0
Input:
name = input()
Output:
Print(โHello โ,name,โ, glad to meet you!โ
0
Input
Name is input
Output
Bring output ( musa)