Computer Science, asked by shantanumahato448, 10 months ago

Write a program to read the user name using raw_input() and display back on the screen using print()

Answers

Answered by sunitapandey351
0

THE PICTURE ABOVE IS THE ANSWER TO YOUR QUESTION HOPE YOU WILL MARK AS BRAINLIEST

Attachments:
Answered by mindfulmaisel
0

PYTHON PROGRAM

Answer:

def raw_input():

  a=input("Enter your name:")

   print(a)

print("WELCOME TO PYTHON PROGRAM")

raw_input()

output for the above Program -

WELCOME TO PYTHON PROGRAM

Enter your name: Brainly

Brainly

explanation:

The function "raw_input()" is defined and the statement inside the function helps us to read the input from the user and "print()" helps us to display the input we obtained from the use.

TO KNOW MORE ABOUT:

1.A python program to input a single digit number and print its 3 digit number created as (n(n+1)(n+2)). for example if you input 5 then the output should be 567.

https://brainly.in/question/9846913

2.Write a Python program to find person is senior citizen or not input page​

https://brainly.in/question/12150015

Similar questions