Activity - Data Science Toolkit#
Create a GitHub account in the following link.
Create a GitHub repository named
gmu_casbbi_nrt
. You can do it directly here new.Launch this file in Google Colab pressing the
Launch Botton
in the upper right corner and then selectColab
.Modify the next cell with your answers.
Run all the cells.
Save the notebook as
about_me.ipynb
in your local files.Upload it to your GitHub repository you just created.
name = "Alonso G. Ogueda-Oliva"
i_am_from = "Valparaíso, Chile"
program = "Mathematics Ph.D."
about_me = "I like hiking and biking"
fun_fact = "Half of one of my teeth is fake because I fell out when I was a child"
reason_apply = "I really enjoy working in interdisciplinary teams and learn about everything"
print(
f"""
My name is {name}, I am from {i_am_from} and I am enrolled in the {program} program at GMU.
{about_me}. And a fun fact about me is that {fun_fact}.
I applied to the CASBBI's NRT program because {reason_apply}.
"""
)
My name is Alonso G. Ogueda-Oliva, I am from Valparaíso, Chile and I am enrolled in the Mathematics Ph.D. program at GMU.
I like hiking and biking. And a fun fact about me is that Half of one of my teeth is fake because I fell out when I was a child.
I applied to the CASBBI's NRT program because I really enjoy working in interdisciplinary teams and learn about everything.