Quick actions

cmd+k|ctrl+k

Navigation

Languages

2024.10.3--"Raise"--an intentional "Error" for ...

Snippet info

Language

Python

Visibility

public

Author

inf1bonnie2

Created

2024-10-03T12:34:38.460478Z

Updated

2024-10-03T12:34:38.460478Z

# raise  ---to try to locate an error


x=1
while True:
    x +=1
    if x==10:
        raise
INFO