Show Menu
Cheatography

beginner Cheat Sheet (DRAFT) by

I learn to code in Python

This is a draft cheat sheet. It is a work in progress and is not finished yet.

numpy

create numpy array kieu integer
np.empty ((m, n), np.int_)
create a set of n random points with coordinate
np.ran­dom.ra­ndi­nt(­start, end, (n,2))
import matplotlib to plot
import matplo­tli­b.p­yplot as plt
import math
import math
sort list X from highest to smallest
X.sort­(re­ver­se=­True)
sort list X smallest to highest
X.sort()
define a function with a value. Need to call f(x) later such as: y = f(x)
def f(x): square = x**x return square
define a function without return (print)
def f(x): square x**x print(­square)
điểm i được visit hay chưa, nhận giá trị 0 1
routin­g.A­cti­veV­ar(i)
xe nào đi qua điểm i (trả giá trị xe thứ k)
routin­g.V­ehi­cle­Var(i)
tập hợp các điểm có thể đi từ i trong tập còn lại của vertex trong ngôn ngữ máy
routin­g.N­ext­Var(i)
Sau điểm 3 không được chạy đến điểm 1
routin­g.N­ext­Var­(3).re­move(1)
Or tool-xe k có chạy hay không?
routin­g.A­cti­veV­ehi­cle­Var(k)
Or tool-time tới điểm i
routin­g.t­ime­Acum(i)
Or tool-a­ppend (add) one more value to x
x.appe­nd(­value)
Or tool-l­ength of matrix is number of rows (m)
x = np.empty ((m,n), np.int_), len(x)
ctrl+?
# text
ctrl+F9
run from the beginning
define an array(3,1) in numpy
x = np.arr­ay(­[[1], [2], [3]])
matrix b multiply matrix a
c = np.dot­(b,a)

numpy

create a set of n random points with coordinate
np.ran­dom.ra­ndi­nt(­start, end, (n,2))