Skip to content

Commit e33aa7d

Browse files
committed
Update ex024.py
1 parent d63b3e7 commit e33aa7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ex024.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#Crie um programa que leia o nome de uma cidade e diga se ela começa ou não com o nome 'Santo'.
22
cid = str(input('Em que cidade você nasceu?')).strip()
3-
print(cid[:5].upper() == 'SANTO')]
3+
print(cid[:5].upper() == 'SANTO')

0 commit comments

Comments
 (0)