Posts by ihavenoidea • 161 points
3 posts
-
0
votes2
answers104
viewsA: I don’t understand why my program isn’t working
Follows the code "functional": a = input("Insira seu nome: ") a1 = int(input("Insira a sua idade: ")) a2 = input("Informe seu sexo [M/F]: ").upper() print(" ") b = input("Insira seu nome: ") b1 =…
pythonanswered ihavenoidea 161 -
2
votes2
answers58
viewsA: How does the numpy Prod method work?
The Numpy library is mostly written in C with wrapper for Python. In this way, Numpy will follow the type limitations of C, and therefore the problem you have is derived from the integer limitation…
-
1
votes1
answer29
viewsA: Error using a bot in python
By your error log, you are using Python 3.9. Looking at the documentation of Python 3.8, the function time.clock() was discontinued in version 3.3 and removed in version 3.8, which is probably the…