Solution to exercise 3 #4

Open
emiliaja wants to merge 3 commits from emiliaja/2024-heraklion-ODD:python_expert into main
Showing only changes of commit 618d441209 - Show all commits

View file

@ -13,6 +13,6 @@ def make_example_potion(student_name="ASPP student"):
print(f"You successfully ran make_example_potion, {student_name}, well done :).")
return my_potion
my_name = 'ASPP student'
my_potion = make_example_potion(student_name=my_name)
if __name__=="__main__":
my_name = 'ASPP student'
my_potion = make_example_potion(student_name=my_name)