Created
June 8, 2020 11:33
-
-
Save akamanocha/d8b6698d06eeb4f89e06965e0f5a1357 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class UnImplementedClassYet: | |
pass | |
class NameTheErrorButNothingNew(Exception): | |
pass | |
for i in range(1, 10): | |
pass | |
x = -1 | |
if x > 0: | |
pass | |
else: | |
print('Negative number') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment