Posts by Edilson Alzemand • 41 points
3 posts
-
3
votes1
answer157
viewsQ: Running functions simultaneously in Python3
I have a snippet of a code that performs "text to Speech", but to see the print() function I have to wait for the playsound() function to end. Is there any way to make the script run the print()…
-
0
votes1
answer415
viewsA: How to generate an executable with all my project files?
Yes, it is possible! You will need the following program (Auto Py to Exe): https://pypi.org/project/auto-py-to-exe/ The rest is very intuitive, just mark the options and if necessary, include…
-
-1
votes2
answers85
viewsA: I am learning Python and have an exercise using the FOR that I am not able to do, can anyone help me?
Thought I’d do it that way, see if it helps you: print('ler idade e sexo de 5 pessoas') sexo = [] idade = [] soma_m = 0 soma_f = 0 cont_m = 0 cont_f = 0 idade_m = [] idade_f = [] for x in range(5):…