Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
try/except blocks
#9
there was extra bracket in both cases on line 3

for n in (2, 12, 0, 1):
    try:
        print(f'72 divided by {n} is {72 / n}.')
    except ZeroDivisionError:
        print ('72 divided by 0 produces an Error: Invalid argument.')
def divide72(divisor):
    try:
        print(f'72 divided by {n} is {72 / divisor}.')
    except ZeroDivisionError:
        print ('72 divided by 0 produces an Error: Invalid argument.')
for n in (2, 12, 0, 1):
    divide72(n)
sorry, it was my mistake
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
try/except blocks - by newbieAuggie2019 - Oct-05-2019, 02:04 AM
RE: try/except blocks - by wavic - Oct-05-2019, 02:36 AM
RE: try/except blocks - by newbieAuggie2019 - Oct-05-2019, 04:59 AM
RE: try/except blocks - by Larz60+ - Oct-05-2019, 02:57 AM
RE: try/except blocks - by buran - Oct-05-2019, 07:57 AM
RE: try/except blocks - by newbieAuggie2019 - Oct-05-2019, 03:55 PM
RE: try/except blocks - by Gribouillis - Oct-05-2019, 08:39 AM
RE: try/except blocks - by perfringo - Oct-05-2019, 04:42 PM
RE: try/except blocks - by newbieAuggie2019 - Oct-05-2019, 05:55 PM
RE: try/except blocks - by buran - Oct-05-2019, 05:01 PM
RE: try/except blocks - by newbieAuggie2019 - Oct-05-2019, 05:21 PM
RE: try/except blocks - by buran - Oct-05-2019, 05:37 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  RSA Cipher with blocks Paragoon2 0 613 Nov-26-2023, 04:35 PM
Last Post: Paragoon2
  How to properly format rows and columns in excel data from parsed .txt blocks jh67 7 2,154 Dec-12-2022, 08:22 PM
Last Post: jh67
  Am I a retard - else and finally blocks in a try statement RubenF85 6 2,812 Jan-12-2021, 05:56 PM
Last Post: bowlofred
  How to tabulate correctly repeated blocks? Xiesxes 4 3,119 Mar-21-2020, 04:57 PM
Last Post: Xiesxes
  Understanding program blocks newbieAuggie2019 2 2,119 Oct-02-2019, 06:22 PM
Last Post: newbieAuggie2019
  The Empty List Blocks Recursion leoahum 6 5,567 Mar-05-2019, 06:55 PM
Last Post: leoahum

Forum Jump:

User Panel Messages

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