Skip to content
This repository was archived by the owner on Jun 29, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions individual_introductions/daniel_li.py/daniel_li.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
def intro():
print('Hi! My name is Daniel Li. I\'m a 2nd year Computer Science major.' +
'I love bodybuilding and eating!')
3 changes: 3 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@
# Put all imports below this line
from individual_introductions import shivam_patel # import the file containing your individual introduction blurb
from individual_introductions import andrew_huth
from individual_introductions import daniel_li


def main():

shivam_patel.intro() # call your intro function
andrew_huth.intro()
daniel_li.intro()


if __name__ == '__main__':
Expand Down