Python: Difference between revisions
Jump to navigation
Jump to search
(→format) |
|||
(20 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
= | =version= | ||
Show python version | |||
python -V | |||
=make an http request= | |||
import requests | |||
r =requests.get('https://halfface.se') | |||
print(r.text) | |||
=dictionary= | =dictionary= | ||
dictionary = {"a": 99, "hello": "world"} | |||
=import= | |||
Import functions. | |||
import $module | |||
=try:= | |||
Exception handling. Example will fail because x is unset. | |||
= | |||
try: | try: | ||
print(x) | |||
except: | |||
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) | |||
=range= | |||
for i in range(0,Loops,1): | |||
= | print("Value") | ||
= | |||
= | |||
= | |||
= | |||
= | |||
=input= | |||
Read a value from prompt into variable number. | |||
number=int(input("Please give me a number? ")) | |||
=append= | |||
Append values to grades | |||
grades.append(int(input("Please give me the grade? "))) | |||
=format= | =format= | ||
Use variable i input question string. | |||
print | sales = float(input("Please enter your sales from day {}".format(x))) | ||
=round, number of decimals= | |||
print(round(AverageGrades),1) | |||
=debug/trace= | |||
python -m trace --trace script.py | |||
=virtualenvwrapper= | |||
enter | |||
workon | |||
exit | |||
deactivate |
Latest revision as of 10:51, 10 September 2024
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)
range
for i in range(0,Loops,1): print("Value")
input
Read a value from prompt into variable number.
number=int(input("Please give me a number? "))
append
Append values to grades
grades.append(int(input("Please give me the grade? ")))
format
Use variable i input question string.
sales = float(input("Please enter your sales from day {}".format(x)))
round, number of decimals
print(round(AverageGrades),1)
debug/trace
python -m trace --trace script.py
virtualenvwrapper
enter
workon
exit
deactivate