I’m new to Python and I ran into a really weird bug while running my first program.
Here is my code. I make a variable that stores a number and then I print it.
def main():
int print = 3;
print(print);
The code needs no explanation. Obviously it would print “3”, but I get a weird error. Has anybody else encountered this bug? How do I report it to the Python devs?
Any help is appreciated.
Random edit to reopen the question because there was no reason to close it in the first place. Please, I’d be very happy to just get one respectful and helpful answer.
Paul Blart is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
16