Posts by Guilherme Henrique • 61 points
2 posts
-
1
votes1
answer88
viewsQ: Python - Compare Lists, using conditions to determine Start and End of Search
Introducing: Program has 1 Lists and 1 Set: List = Data Entry; Ensemble: Comparative Data lista_entrada = ['BBB','AAA','CCC','DDD','EEE'] print() for item in lista_entrada: print("item") lista_bd =…
pythonasked Guilherme Henrique 61 -
3
votes1
answer238
viewsQ: Slicing String and Saving the Slices in a PYTHON List
Hello, I would like to understand a little more about strings in PYTHON. I’m developing a program, which consists of: Pick up a STRING Separate STRING from 3 to 3 characters And store each part in a…