Posts by Paulo Vinícius Soares • 53 points
1 post
-
5
votes1
answer723
viewsQ: Find all instances of a pattern in a text
I need to write a program that identifies a lowercase letter surrounded by three uppercase letters on each side. For example: "AEIoSDE" == "o" I wrote the code as follows: # coding: utf-8 letra =…