Answers for "input a string in python"

3

taking String input from user in python

User_Name = str(input("What is your name:- "))
print("Hi "+User_Name+" It's me python")
Posted by: Guest on July-27-2021
17

python input

# The function 'input()' asks the user for input
myName = input()
Posted by: Guest on February-21-2020
11

python input function

answer = input('What is your name?')
Posted by: Guest on April-24-2020
1

python text input

name = input("Input message here")
Posted by: Guest on February-11-2020

Code answers related to "input a string in python"

Python Answers by Framework

Browse Popular Code Answers by Language