Dernières publications

Tutoriel python de Derek Banas

Here are some notes from a video about python from Derek Banas. I skipped parts that weren’t interesting for me. Max size sys.maxsize # get the maximum size of an integer sys.float_info.max # get the maximum size of a float Float are accurate up to 151515 digits. Complex numbers : real part +++ imaginary: cn1 = 4 + 3j Common maths functions abs(float) max(float, float) min(float, float) pow(float, float) # power round(float) With math: math.

Plus…