From 9b2f34e5a599588b4eb50c72d28e88d41d7515d1 Mon Sep 17 00:00:00 2001 From: jazzy1390 Date: Tue, 23 May 2023 15:42:49 +0100 Subject: [PATCH 1/4] changed print to hey jazz --- week1/hello-word.py | 1 + 1 file changed, 1 insertion(+) diff --git a/week1/hello-word.py b/week1/hello-word.py index 63a68fd..7008e88 100644 --- a/week1/hello-word.py +++ b/week1/hello-word.py @@ -1 +1,2 @@ print("hello word!") +print("hello jazz") \ No newline at end of file From af491c93e2950cdc9ecb823331a8a2f59cdb0beb Mon Sep 17 00:00:00 2001 From: jazzy1390 Date: Wed, 24 May 2023 12:39:03 +0100 Subject: [PATCH 2/4] updated with hello jazz --- week1/hello-word.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/week1/hello-word.py b/week1/hello-word.py index 7008e88..422ec28 100644 --- a/week1/hello-word.py +++ b/week1/hello-word.py @@ -1,2 +1 @@ -print("hello word!") -print("hello jazz") \ No newline at end of file +print("hello jazz") From 65c5a2f0ac1edfd602d65627c3439928f015d918 Mon Sep 17 00:00:00 2001 From: jazzy1390 Date: Wed, 24 May 2023 13:55:49 +0100 Subject: [PATCH 3/4] changed to jazzy --- week1/hello-word.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/week1/hello-word.py b/week1/hello-word.py index 422ec28..62618ca 100644 --- a/week1/hello-word.py +++ b/week1/hello-word.py @@ -1 +1 @@ -print("hello jazz") +print("hello jazzy") From 9c4d558c428cd9fc4969ba50e1afbb2cf964669f Mon Sep 17 00:00:00 2001 From: jazzy1390 Date: Wed, 24 May 2023 16:03:33 +0100 Subject: [PATCH 4/4] changed to hey jazz --- week1/hello-word.py | 2 +- week2/week2.py | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/week1/hello-word.py b/week1/hello-word.py index 62618ca..4be5b40 100644 --- a/week1/hello-word.py +++ b/week1/hello-word.py @@ -1 +1 @@ -print("hello jazzy") +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)