Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Crash Course Chapter 7
#3
(Feb-05-2018, 05:05 PM)Demini Wrote: >>>message = input("Tell me something, and I will repeat it back to you: ")

The input() to the right of the equal sign is the 'prompt' the user see's, 'message' to the left of the equal sign is the variable name that will hold the response to what the user enters at the prompt, in this case you should enter Hello Everyone! at the prompt, which is then saved in the variable 'message'. The line print(message) is saying print out the value held in variable 'message'.

>>> message = input("Tell me something, and I will repeat it back to you: ")
Tell me something, and I will repeat it back to you: Howdy parrot
>>> print(message)
Howdy parrot
If it ain't broke, I just haven't gotten to it yet.
OS: Windows 10, openSuse 42.3, freeBSD 11, Raspian "Stretch"
Python 3.6.5, IDE: PyCharm 2018 Community Edition
Reply


Messages In This Thread
Crash Course Chapter 7 - by Demini - Feb-05-2018, 05:05 PM
RE: Crash Course Chapter 7 - by Larz60+ - Feb-05-2018, 05:31 PM
RE: Crash Course Chapter 7 - by sparkz_alot - Feb-05-2018, 08:50 PM
RE: Crash Course Chapter 7 - by Demini - Feb-05-2018, 10:58 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Catching a crash within a library code ebolisa 9 3,296 Nov-22-2021, 11:02 AM
Last Post: bowlofred
  Python Crash Course ( 2nd edition) alok 1 1,948 Jul-19-2021, 05:55 PM
Last Post: snippsat
  Help in designing a timestamp finder for chapter-less TV shows Daring_T 1 1,904 Oct-26-2020, 09:30 PM
Last Post: Daring_T
  Im using python crash course version 2 james_newbie 3 2,458 Sep-07-2019, 09:21 PM
Last Post: ichabod801
  Python 3 crash course james_newbie 6 4,017 Aug-25-2019, 08:23 PM
Last Post: snippsat
  Pyinstaller exe won't launch after crash kainev 0 2,660 May-11-2019, 06:06 PM
Last Post: kainev
  Py_Initialize Crash with Python 3.6 paulhbm 0 4,435 Sep-20-2018, 09:56 AM
Last Post: paulhbm
  IDLE crash using special characters? reikonaga 6 4,858 Aug-06-2018, 07:37 AM
Last Post: keegan_010
  How to Crash a Computer keegan_010 6 4,338 Aug-05-2018, 06:01 AM
Last Post: Skaperen
  Console crash after boot. friendlymegalomaniac 1 2,629 Apr-07-2018, 05:44 PM
Last Post: wavic

Forum Jump:

User Panel Messages

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