Python: Difference between revisions
Jump to navigation
Jump to search
(→import) |
(→try:) |
||
Line 18: | Line 18: | ||
except: | except: | ||
print("An exception occurred") | print("An exception occurred") | ||
=sys.exit()= | |||
exits and no stack traceback is printed. |
Revision as of 18:42, 27 April 2021
version
Show python version
python -V
make an http request
import requests r =requests.get('https://halfface.se') print(r.text)
dictionary
dictionary = {"a": 99, "hello": "world"}
import
Import functions.
import $module
try:
Exception handling. Example will fail because x is unset.
try: print(x) except: print("An exception occurred")
sys.exit()
exits and no stack traceback is printed.