import math def seno(valor): return math.sin(valor) def coseno(valor): return math.cos(valor) def tangente(valor): return math.tan(valor)