Posts by Nathan Bahia • 15 points
5 posts
-
1
votes1
answer141
viewsQ: How to update Forms in Django
Hello, everybody. Here’s the thing: I have two presses that integrate with a model in Django, being them: Forms.py from datetime import datetime from django import forms from .models import…
-
0
votes1
answer140
viewsQ: How to limit the number of lines in a Listbox in Tkinter
I’m studying about Tkinter and I came across a problem when I wanted to limit the amount of results that appeared on a Listbox. I looked it up online, but I couldn’t find anything on it. I am…
-
-1
votes2
answers274
viewsQ: How to resolve character overlays (sprites) on screen with Pygame
I am developing a TOP-DOWN game with several enemies, however, due to the order in which they are plotted on the screen, no matter if one is behind the other, always the one that was plotted last…
-
-1
votes1
answer848
viewsQ: Get value from an Excel cell with Openpyxl (Python)
I have a spreadsheet in Excel that I am analyzing some data, and when I do this loop, the returned value is a string, like '=AL35/AH35' for example, instead of a float. This set of cells I’m…
-
0
votes2
answers44
viewsQ: How to disable link via Javascript CONFIRM?
I am developing my first web application, being it an account manager to receive and to pay, and I found a difficulty when I came across the need for a Javascript CONFIRM to allow or block the…