Lab - About Me
from IPython.display import Markdown as md
# TODO: modify variables
name = 'John Smith'
degree = 'a PhD in Computer Science'
md(f'Hi! My name is __{name}__. I am currently pursuing __{degree}__.')
TODO: add markdown code to load a recent vacation photo of yours.
TODO: write a short paragraph to tell us more about this vacation trip.
# TOOD: modify the code to display three images that represent your favorite dishes
markdowntext = ''
for filename in ['todo.png','todo.png','todo.png']:
markdowntext += f''
md(markdowntext)