Please enable JavaScript.
Coggle requires JavaScript to display documents.
Programar (Funciones (Ejemplos (TURTLE (goto(x,y) (recibe dos argumentos…
Programar
Funciones
Ejemplos
input()
Ingresa un valor
Recibe 1 argumento
print()
1 solo argumento
TURTLE
shape()
1 argumento
move
goto(x,y)
recibe dos argumentos NUMERICOS
MUEVE la tortuga a coordenadas x e y
randominteger()
recibe 2 argmentos ENTEROS
RETORNA un ENTERO
CREATE_TEXT()
recibe uno o más argumentos de cualquier tipo
devuelve UN string
Informacion
Para qué sirve, o qué hace
Cantidad y TIPO de argumentos o parámetros
Qué RETORNA / Devuelve
Crear FUNCIONES PROPIAS
Nombre
Cuántos y de qué tipo son los argumentos
Qué retorna?
Sintaxis
Entrada
input()
prompt()
Salida
print()
CREATE TEXT
Ciclos (loops)
while
REPEAT for
Iteran
ITERACIONES
Variables
Tipos
Numeros
integer ENTEROS
float DECIMALES/REALES
string Cadenas Texto
bool LOGICAS
True
False
Asignacion de variables SETEAR
NO usar variables que no hayan sido DEFINIDAS/SETEADAS previamente