Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Beginner Code
#9
(Mar-18-2019, 11:17 AM)samsonite Wrote: Simply that Python2 doesn't accept the single quotation mark, as I've said. By adding one more mark, Python2 works properly. Easy to verify, try it!

Well, it's really easy to show that it works with a single quote and NOT work with double single quotes when you pass something taht input will consider variable name:

Python 2.7.6 (default, Jun 22 2015, 17:58:13) 
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> your_name = input("What''s your name?")
What''s your name?Billy
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<string>", line 1, in <module>
NameError: name 'Billy' is not defined
>>> your_name = input("What's your name?")
What's your name?1
>>> your_name
1
>>> your_name = input("What's your name?")
What's your name?[1, 2, 3]
>>> your_name
[1, 2, 3]
>>> 
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply


Messages In This Thread
Beginner Code - by bh3282 - Mar-18-2019, 04:30 AM
RE: Beginner Code - by samsonite - Mar-18-2019, 05:42 AM
RE: Beginner Code - by woooee - Mar-18-2019, 06:46 AM
RE: Beginner Code - by samsonite - Mar-18-2019, 07:25 AM
RE: Beginner Code - by Yoriz - Mar-18-2019, 08:25 AM
RE: Beginner Code - by samsonite - Mar-18-2019, 10:25 AM
RE: Beginner Code - by buran - Mar-18-2019, 11:03 AM
RE: Beginner Code - by samsonite - Mar-18-2019, 11:26 AM
RE: Beginner Code - by buran - Mar-18-2019, 11:36 AM
RE: Beginner Code - by samsonite - Mar-18-2019, 03:58 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Beginner: Code not work when longer list raiviscoding 2 850 May-19-2023, 11:19 AM
Last Post: deanhystad
  Code not reading http link from .txt file (Beginner level) plarrip 3 2,452 Dec-17-2020, 11:33 PM
Last Post: bowlofred
  Beginner: I need help understanding few lines of a code. hop_090 1 1,715 Sep-07-2020, 04:02 PM
Last Post: Larz60+
  Beginner Code, how to print something after a number of turns (guessing game) QTPi 4 2,806 Jun-18-2020, 04:59 PM
Last Post: QTPi
  A beginner code... TheDude 7 3,327 Jun-18-2020, 05:39 AM
Last Post: TheDude
  [Beginner] Code is not producing desired result fakej171 2 2,460 Mar-21-2020, 10:26 AM
Last Post: buran
  what function should i use to tidy up my code (extreme beginner) scraig0117 4 2,324 Dec-16-2019, 04:03 PM
Last Post: scraig0117
  Beginner at Python. Trying to count certain integer from random string of code kiaspelleditwrong 3 2,449 Oct-14-2019, 10:40 AM
Last Post: perfringo
  Beginner trying to code in python RA0211 1 1,861 Sep-26-2019, 11:10 AM
Last Post: emryscass
  [Help] Beginner's code Owenix 3 2,772 Sep-15-2018, 08:03 PM
Last Post: ichabod801

Forum Jump:

User Panel Messages

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