0
How to code a user input
Please can anybody help me figure out what’s wrong with this program name = input () print (name)
11 ответов
+ 1
name = input(" Enter Name ") # input()
print(name)
+ 1
print(input("Enter name: "))
0
name = input()
print(name) #remove =
0
I mean also.
But small p.
Whats the problem actually ?
0
I’m trying to run the code so I can get a pop up space for the user
My pycharm refuses to run this code though it is not an error
name = input()
print (name)
0
"""
What error it saying..?
Code is correct..
Just copy this and run in python script here. On pop-up give input and hit enter. See output"""
name = input()
print(name)
""" About pycharm, am not sure you may need any settings to set.. Do you running first time Or any other code running fine? """
0
Eveery other code runs fine so far
0
remove space before '('
0
#a user enters a string
#the string is assigned to name
#then prints the string
name=input("Enter Full Name: ")
print(name)
0
Everything is fine, nothing is wrong here
- 1
Print(name)
I mean🤏