Skip to content

Commit a6cbfe7

Browse files
committed
Refactor: to Portuguese for English.
1 parent cd219c9 commit a6cbfe7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ex022.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Create a program that reads a person's full name and displays:
1+
#22- Create a program that reads a person's full name and displays:
22
# - The name in all upper and lower case letters.
33
# - How many letters in total without considering spaces
44
# - How many letters are in the first name.

ex024.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Create a program that reads the name of a city and says whether or not it starts with the name 'Saint'.
1+
#24- Create a program that reads the name of a city and says whether or not it starts with the name 'Saint'.
22
city = str(input('What city were you born?')).strip()
33
print(city[:5].upper() == 'SAINT')

0 commit comments

Comments
 (0)