diff --git a/week1/hello-word.py b/week1/hello-word.py index 63a68fd..4be5b40 100644 --- a/week1/hello-word.py +++ b/week1/hello-word.py @@ -1 +1 @@ -print("hello word!") +print("hello jazz!") diff --git a/week2/week2.py b/week2/week2.py index e69de29..d0d980e 100644 --- a/week2/week2.py +++ b/week2/week2.py @@ -0,0 +1,28 @@ +word = "hello world" +name = "Alice" +age = 23 +height = 167.5 +imaginary = True +favourite_foods = [ + 'cookies', + 'icecream', + 'Juice' +] +previous_jobs = { + 'first':'barista', + 'second': 'driver', + 'current': 'teacher' + } + +print (name) +print (age) +print (height) +print (imaginary) +print (favourite_foods) +print (previous_jobs) +print (word) +print (len(word)) +print (word.count('o')) +scores = [3,7,4,2] +print (len(scores)) +print (scores)