Post de pruebas¶
Este es un post de pruebas con MarkDown
Code¶
Ejemplos¶
Code for a specific language¶
Some more code with the py at the comienzo start:
import tensorflow as tf
def whatever()
With a title¶
bubble_sort.py
def bubble_sort(items):
for i in range(len(items)):
for j in range(len(items) - 1 - i):
if items[j] > items[j + 1]:
items[j], items[j + 1] = items[j + 1], items[j]
With line numbers¶
1 2 3 4 5 | |
Highlighting lines¶
def bubble_sort(items):
for i in range(len(items)):
for j in range(len(items) - 1 - i):
if items[j] > items[j + 1]:
items[j], items[j + 1] = items[j + 1], items[j]
Some code goes here.(1)
I'm an annotation!
Icons and Emojs¶