From df1be327ef8e34eadf4e47c79844020a70eb8af0 Mon Sep 17 00:00:00 2001 From: pradeep sai Date: Sat, 20 Oct 2018 13:01:46 -0700 Subject: [PATCH] update main.py null equivalent is None in python, and is the coding standard. --- challenges/2.2.Strings/main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/challenges/2.2.Strings/main.py b/challenges/2.2.Strings/main.py index 490a91f..2971834 100644 --- a/challenges/2.2.Strings/main.py +++ b/challenges/2.2.Strings/main.py @@ -1,11 +1,11 @@ ### Modify the code below ### -myName = null +myName = None -myAge = null +myAge = None -favoriteActivity = null +favoriteActivity = None -mySentence = null +mySentence = None ### Modify the code above ###