Posts by Guilherme Jesuino Ramires • 1 point
3 posts
-
-1
votes1
answer69
viewsA: Is there a way back to a particular line of code?
If I understand your problem just use a python function for the operation you want to repeat. Function tutorial Your code for example could be rewritten like this: numeros_por_extenso = [ 'zero',…
-
0
votes1
answer40
viewsA: Doubt about substitutions in python replace method, how to better access the lists?
def fix_start(palavra: str) -> str: primeira_letra = palavra[0] restante_da_palavra = palavra[1:] nova_palavra = primeira_letra + restante_da_palavra.replace(primeira_letra, '*') return…
-
0
votes1
answer749
viewsA: Error in kivy installation
It worked for me, I got it from a gringo repository on github: It is not likely that we will release 1.11.1 for 3.8 for pypi. However, you can install the master kivy using: pip install kivy[base]…