Skip to content
Merged
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
8 changes: 7 additions & 1 deletion session1/collaborative.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Hi there welcome to the collaborative exercise!
# Start typing your answers below

name2 = 'Hope'
favourite_food2 = 'pizza'
description2 = 'My name is {} and my favourite food is {}.'. format (name, favourite_food)

name = "Isabella"
favourite_food = "pizza"
description= "my name is {} and my favourite food is {}".format(name, favourite_food)
print(description)
print(description)