Python Forum
[SOLVED] Expected An Indented Block
Thread Rating:
  • 3 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[SOLVED] Expected An Indented Block
#3
on the second row you need to put what will be executed in case the condition is True.
so it will look like
if console == 'y':
    print('you entered {}'.format(console))
elif console == 'Y':
    pass # now, that is a placeholder
elif console == 'n':
    pass # now, that is a placeholder
elif console == 'N':
    pass # now, that is a placeholder
else:
    pass # now, that is a placeholder
however more pythonic would be something like
if console.lower() in ('y', 'yes'):
    pass # now, that is a placeholder
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
[SOLVED] Expected An Indented Block - by Panda - Jun-06-2018, 06:12 PM
RE: Expected An Indented Block - by Larz60+ - Jun-06-2018, 06:36 PM
RE: Expected An Indented Block - by Panda - Jun-06-2018, 09:16 PM
RE: Expected An Indented Block - by buran - Jun-06-2018, 06:37 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to write in text file - indented block Joni_Engr 4 6,636 Jul-18-2022, 09:09 AM
Last Post: Hathemand
  how far is this line indented? Skaperen 3 1,399 May-30-2022, 05:49 PM
Last Post: Skaperen
Thumbs Up [SOLVED] Simplify condition test in if block? Winfried 2 1,785 Aug-25-2021, 09:42 PM
Last Post: Winfried
  [SOLVED] [geopy] "ValueError: too many values to unpack (expected 2)" Winfried 2 2,978 Mar-30-2021, 07:01 PM
Last Post: Winfried
  error "IndentationError: expected an indented block" axa 4 3,025 Sep-08-2020, 02:09 PM
Last Post: ibreeden
  IndentationError: expected an indented block ryder5227 2 2,682 Sep-27-2019, 06:59 PM
Last Post: jefsummers
  SOLVED: best way to block (wait on) shell calls to multiple windows programs at once? ezdev 0 2,663 Dec-10-2017, 06:42 AM
Last Post: ezdev
  Expected an indented block Nicoles07 2 3,488 Sep-15-2017, 05:19 PM
Last Post: deaspo

Forum Jump:

User Panel Messages

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