Curso Completo De Python Programacion En Python Desde Cero May 2026
import matplotlib.pyplot as plt x = [1,2,3,4] y = [10,20,25,30] plt.plot(x, y) plt.xlabel('Eje X') plt.ylabel('Eje Y') plt.title('Gráfico simple') plt.show() Proyecto: Gestor de Tareas (CLI)
import mi_modulo print(mi_modulo.saludar()) from mi_modulo import saludar, PI from mi_modulo import * # no recomendado import mi_modulo as mm curso completo de python programacion en python desde cero
# Esto es un comentario print("Hola") # Comentario en línea import matplotlib




You must be logged in to post a comment.