Python Forum
try catch question ,get data from main code
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
try catch question ,get data from main code
#1
Hello
I want to learn and understand what am I doing wrong
I wrote a simple code that use try - catch

import time

i = 0
How_Many_False = 0


def test():
    print("number i is : %3.2f  " % i)
    print(f"result is : {i / 10:3.3f}")

    if i > 5:
        try:
            temp = i / 0
            print(temp)

        except Exception as e:
            print(e)
            print(How_Many_False)
            How_Many_False += 1

    print("false times is : " % How_Many_False)


while 1:
    i = (i + 1)
    test()
    time.sleep(1)
but when I try to run it I get error - in the "catch" section
when I open the code in PyCharm I see this error

Quote:Unresolved reference 'How_Many_False'

why ?
the code is meant to fail on 5
this is just so I can understand the links between the variables on the code

Thanks ,
Reply


Messages In This Thread
try catch question ,get data from main code - by korenron - Nov-03-2020, 07:49 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Filter data into new dataframe as main dataframe is being populated cubangt 8 1,101 Oct-23-2023, 12:43 AM
Last Post: cubangt
  Python 3.11 data import question love0715 2 850 Mar-05-2023, 06:50 PM
Last Post: snippsat
  try catch not working? korenron 2 905 Jan-15-2023, 01:54 PM
Last Post: korenron
  Multiprocessing queue catch get timeout Pythocodras 1 2,416 Apr-22-2022, 06:01 PM
Last Post: Pythocodras
  twisted: catch return from sql wardancer84 0 1,561 Sep-08-2021, 12:38 PM
Last Post: wardancer84
  how to catch schema error? maiya 0 1,897 Jul-16-2021, 08:37 AM
Last Post: maiya
  is this a good way to catch exceptions? korenron 14 4,809 Jul-05-2021, 06:20 PM
Last Post: hussaind
  pool mysql error - not catch by try\except? korenron 1 2,191 Jul-05-2021, 11:26 AM
Last Post: ibreeden
  Integrate/import a gui code to my main.py penahuse 6 3,219 Feb-03-2021, 08:49 PM
Last Post: deanhystad
  Early data import question VorpalPirate 2 2,294 Dec-09-2019, 10:52 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

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