We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd219c9 commit a6cbfe7Copy full SHA for a6cbfe7
ex022.py
@@ -1,4 +1,4 @@
1
-#Create a program that reads a person's full name and displays:
+#22- Create a program that reads a person's full name and displays:
2
# - The name in all upper and lower case letters.
3
# - How many letters in total without considering spaces
4
# - How many letters are in the first name.
ex024.py
@@ -1,3 +1,3 @@
-# Create a program that reads the name of a city and says whether or not it starts with the name 'Saint'.
+#24- Create a program that reads the name of a city and says whether or not it starts with the name 'Saint'.
city = str(input('What city were you born?')).strip()
print(city[:5].upper() == 'SAINT')
0 commit comments