Python: Difference between revisions
Jump to navigation
Jump to search
(→re) |
|||
Line 25: | Line 25: | ||
=join elements in list for other output= | =join elements in list for other output= | ||
print(', '.join(configured_ip_addresses)) | print(', '.join(configured_ip_addresses)) | ||
=for loop= | |||
fruits = ["apple", "banana", "cherry"] | |||
for x in fruits: | |||
print(x) |
Revision as of 20:03, 28 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.
re
Regular expression searching
ip = re.findall(r'[0-9]+(?:\.[0-9]+){3}', config_info)
join elements in list for other output
print(', '.join(configured_ip_addresses))
for loop
fruits = ["apple", "banana", "cherry"] for x in fruits: print(x)