Posts by Henrique Marvin Souza da Silva • 28 points
2 posts
-
0
votes1
answer163
viewsA: Alphabetic Triangle - Python
Look, you only need the quantity variable, the alphabet list and a for to scroll through the list and display the letter at the same time. It looks like this: vezes = int(input("Vezes: ")) alfabeto…
pythonanswered Henrique Marvin Souza da Silva 28 -
0
votes2
answers66
viewsQ: VIEW DICTIONARY ALPHABETICALLY - PYTHON
I have a dictionary that has 2 keys (name, age), within each there is a list of values. I need to put the names in alphabetical order and that the ages accompany the respective owners. That’s the…