Google Classroom
GeoGebraGeoGebra Classroom

No 11:POO Python - Geogebra5 Parábolas

Programación Orientada a Objetos con Python y Geogebra 5.0 NOTA Este Applet contiene código Python, por tanto para que funcione bien, debe descargarse y ejecutarse localmente en el PC con Geogebra 5.0 CODIGO import random ....class Parabolas: ........def __init__(self,contador): ............self.contador=contador ........def mostrar(self): ........for i in range(self.contador): ............def f(x): ................return (x-1) *(x-1) + random.uniform(0,3) ............$f =Function(f) parabolas1=Parabolas(10) parabolas1.mostrar()