Python Forum
Thread Rating:
  • 1 Vote(s) - 2 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Name error/is not defined
#1
i just starter learning coding/programing,and after some joking around with bash i decided to learn python
i am making a script that should ask for your name and make a folder in the scripts directory using your name,however after imputing a name it just gives an error,
INFORMATION-i am using linux however i want my script to be cross-platform with windows aswell,python 3
here is my code


#!/usr/bin/env python
print "hello,i will automaticaly set up you account and files"
print "you will need to enter some data,be honest"
myname = input("What's your name?: ")
print (myname)
print "your name is" + (myname) 
print "okay,please wait while i set up your information"
import os 
os.mkdir((myname))
exit
i enter a name,lets say the name is da
i get this error
Error:
Traceback (most recent call last):   File "python.py", line 4, in <module>     myname = input("What's your name?: ")   File "<string>", line 1, in <module> NameError: name 'da' is not defined
i have tried alot of threads but nothing has worked
how do i make this error go away?
Reply


Messages In This Thread
Name error/is not defined - by foxtreat - Apr-15-2017, 11:51 PM
RE: Name error/is not defined - by metulburr - Apr-15-2017, 11:56 PM
RE: Name error/is not defined - by foxtreat - Apr-16-2017, 12:02 AM
RE: Name error/is not defined - by Ofnuts - Apr-16-2017, 01:49 PM
RE: Name error/is not defined - by metulburr - Apr-16-2017, 05:21 PM
RE: Name error/is not defined - by sparkz_alot - Apr-16-2017, 02:45 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Variable is not defined error when trying to use my custom function code fnafgamer239 4 612 Nov-23-2023, 02:53 PM
Last Post: rob101
  [variable] is not defined error arises despite variable being defined TheTypicalDoge 4 2,157 Apr-05-2022, 04:55 AM
Last Post: deanhystad
  Error 'Contour' not Defined DaveG 3 2,384 Mar-13-2022, 03:29 AM
Last Post: deanhystad
  Getting "name 'get_weather' is not defined error and no json_data returned? trthskr4 6 3,667 Sep-14-2021, 09:55 AM
Last Post: trthskr4
  Error when refering to class defined in 'main' in an imported module HeRo 2 2,425 Apr-13-2021, 07:22 PM
Last Post: HeRo
  Why does lambda throw 'name value_o is not defined' error? karabakh 3 2,207 Dec-14-2020, 05:45 PM
Last Post: karabakh
  name error "name"is not defined MaartenRo 1 3,452 Jul-28-2020, 02:39 AM
Last Post: bowlofred
  Name Error: name 'Stockton' is not defined Pinokchu 3 2,299 Jun-13-2020, 02:48 PM
Last Post: Yoriz
  python library not defined in user defined function johnEmScott 2 3,890 May-30-2020, 04:14 AM
Last Post: DT2000
  error ,,name append is not defined'' Killdoz 1 5,058 May-24-2020, 06:23 PM
Last Post: bowlofred

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020