Search
Lab - About Me

Tasks

  • [ ] Modify the personal introduction text.
  • [ ] Add text to My Background
  • [ ] Add an image to My Vacation
  • [ ] Add multiple images to My Favorite Dishes
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}__.')

Hi! My name is John Smith. I am currently pursuing a PhD in Computer Science.

My Learning Objectives

I am taking this course with the following objectives:

  • Objective 1
  • Objective 2
  • Objective 3
  • Objective 4

My Background

Machine Learning

TODO: write a short paragraph to tell us about experiences with machine learning.

Neuroimaging

TODO: write a short paragraph to tell us about your experiences with neuroimaging.

My Vacation

TODO: add markdown code to load a recent vacation photo of yours. title of the image

TODO: write a short paragraph to tell us more about this vacation trip.

My Favorite Dishes

# 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'![image]({filename})'
md(markdowntext)

imageimageimage