Posts by Lucas Soares • 19 points
3 posts
-
0
votes2
answers10609
viewsA: How to get the lowest value in a list?
def buscarMenor(lista): menor = lista[0] for i in lista: if i < menor: menor = i return menor print(buscarMenor([7.0,5.5,6.0,9.0])) …
-
1
votes1
answer47
viewsA: How to view and maintain an Sqlite database
there is the Sqlitestudio, with it you can see its tables. Official website of the program!
-
0
votes0
answers202
viewsQ: Create a table in Django’s User models!
Well, I would like to create a column in the User models table of Django, because I would like to get the password before Django turns into sha256, because I want to display it in the browser…