Answers for "how to accept string input 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
10

python how to use input

#basic user handling for begginers

x = input("your question here") # when someone types something here that answer will be saved and be used for later

# for example 
print(x)
Posted by: Guest on March-25-2020
0

why wont my python input accept string inputs

username = raw_input("Type you username: ")
print("Welcome " + username)
Posted by: Guest on September-25-2020

Code answers related to "how to accept string input in python"

Python Answers by Framework

Browse Popular Code Answers by Language