Posts by Acácio Silva • 11 points
2 posts
-
-1
votes3
answers1939
viewsQ: I created an executable with pyinstaller and it does not run
Hello I created a executable with the pyinstaller pyinstaller --onefile -c app.py contents of the archive app.py print("hello world") x = input("Qual seu nome?") print(x) after generated while…
pyinstallerasked Acácio Silva 11 -
1
votes1
answer35
viewsQ: Doubts about CSS applying effect on one div without changing the other
I have the following code. The div Second is inside the div first How to make the opacity property not affect the div Second .first { width: 200px; height: 200px; background: red; opacity: 0.6; }…