Computer Science, asked by ramsmedicine, 11 hours ago

Write a Python program to accept and display any string.

pls tell the answer step by step

Answers

Answered by piyushchandrachandra
1

Answer:

N= input()

print(N)

Explanation:

N is a variable which stores the input and then just print it

Answered by yogeshpatil9004933
1

Answer:

Python 3 – input() function

In Python, we use input() function to take input from the user. Whatever you enter as input, the input function converts it into a string. If you enter an integer value still input() function convert it into a string.

Similar questions