What is this book about? The updated edition of Applying Math with Python will help you solve complex problems in a wide variety of mathematical fields in simple and efficient ways. Old recipes have ...
GitHub

import math

print(math.log(10)) # Saída: 2.302585092994046 (logaritmo natural) print(math.log(100, 10)) # Saída: 2.0 (logaritmo na base 10) print(math.sin(math.pi / 2 ...