27-03-2021, 03:17 PM
Luego de desarrollar un código y de obtener los datos en las columnas con print, quiero exportar ese archivo de resultados de las columnas en Python a Excel. El código tiene un ciclo for:
for theta2 in range(360):
theta2rad=radianes(theta2)
#RESULTADOS
RESULTADOS=[theta2,grad(theta_41),grad(theta_42)]
print(RESULTADOS)
for theta2 in range(360):
theta2rad=radianes(theta2)
#RESULTADOS
RESULTADOS=[theta2,grad(theta_41),grad(theta_42)]
print(RESULTADOS)