Archivos de Herramientas computacionales: el arte de la programación
Para crear un encabezado, agrega uno a seis símbolos # antes del encabezado del texto.
[link a video] (https://youtu.be/ZcSyk3zN5Ns)
link a guía Puedes indicar énfasis con texto en negritas, itálicas o tachadas en los campos de comentario y archivos .md
#Estilo
- Negrita **** Este texto está en negrita -Cursiva "" o -- --Este texto está en cursiva y este también
- Tachado ~~ ~~
{Este texto está equivocado-Cursiva en negrita y anidada ** y _ Este_texto_es_extremadamente_importante -Todo en negrita y cursiva *** *** Todo este texto es importante I
🥇 🇲🇽 🎾 🤖 ♓
Tabla | Syntax 2 | Description 3 |
---|---|---|
Dato 1 | Dato 2 | Dato 3 |
Dato 4 | Dato 5 | Dato 6 |
#Cita de Texto
ITESM
[GitHub Pages] (https://pages.github.com/)
{
"type": "Polygon",
"coordinates" : [
[
[-85, 35],
[-100.2155, 25.6748],
[-100.309, 25.6714],
[-101.35628, 20.67675],
[-85,30]
]
]
}
![GitHub Brillante] (https://tec.mx/sites/default/files/styles/header_full/public/2018-12/FachadaTec_0.jpg?itok=_HoeD7qc)
Puedes realizar una lista desordenada al anteceder una o más líneas de texto con -Panda Rojo -Ron da error
- Los Picapiedra
- Panda Rojo 2. Ron da error 3. Los Picapiedra
- Primer concierto
- Primer pijamada
- Panda
- Alejandro García
- [] Cesar Alejandro Benavides
- [] Rodrigo Ibarra
| Syntax | Description | | Header | Title | | Paragraph | Text |
{
"firstName": "John",
"lastName": "Smith",
"age": 25,
}
from freegames import vector
def line(start, end):
"""Draw line from start to end."""
up()
goto(start.x, start.y)
down()
goto(end.x, end.y)
def square(start, end):
"""Draw square from start to end."""
up()
goto(start.x, start.y)
down()
begin_fill()
for count in range(4):
forward(end.x - start.x)
left(90)
end_fill()
def circle(start, end):
"""Draw circle from start to end."""
pass # TODO
def rectangle(start, end):
"""Draw rectangle from start to end."""
pass # TODO
def triangle(start, end):
"""Draw triangle from start to end."""
pass # TODO
def tap(x, y):
"""Store starting point or draw shape."""
start = state['start']
if start is None:
state['start'] = vector(x, y)
else:
shape = state['shape']
end = vector(x, y)
shape(start, end)
state['start'] = None
def store(key, value):
"""Store value in state at key."""
state[key] = value
state = {'start': None, 'shape': line}
setup(420, 420, 370, 0)
onscreenclick(tap)
listen()
onkey(undo, 'u')
onkey(lambda: color('black'), 'K')
onkey(lambda: color('white'), 'W')
onkey(lambda: color('green'), 'G')
onkey(lambda: color('blue'), 'B')
onkey(lambda: color('red'), 'R')
onkey(lambda: store('shape', line), 'l')
onkey(lambda: store('shape', square), 's')
onkey(lambda: store('shape', circle), 'c')
onkey(lambda: store('shape', rectangle), 'r')
onkey(lambda: store('shape', triangle), 't')
done()
Logo
Free Python Games
Donate
If you or your organization uses Free Games, consider donating:
Donate to Free Python Games
Related Topics
Documentation overview
Previous: Illusion
Next: Maze
Quick search