[issue44083] problem with updated 3.9.5

2021-05-09 Thread Eric V. Smith
Change by Eric V. Smith : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-

[issue44083] problem with updated 3.9.5

2021-05-09 Thread Swarnila Chakma
Swarnila Chakma added the comment: Okay actually I managed to solve it. Thanks to both of you for helping me out. -- ___ Python tracker ___ ___

[issue44083] problem with updated 3.9.5

2021-05-09 Thread Shreyan Avigyan
Shreyan Avigyan added the comment: What is the input you're giving? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue44083] problem with updated 3.9.5

2021-05-09 Thread Swarnila Chakma
Swarnila Chakma added the comment: I'm executing the code by the software PycharmEdu from jetbrains. I'm actually facing the problem, no matter what input I give in my console, it's automatically just printing empty strings. How can I solve this? --

[issue44083] problem with updated 3.9.5

2021-05-09 Thread Shreyan Avigyan
Shreyan Avigyan added the comment: What is the input are you expecting? int can only convert string with only numbers like "10" or "2" not "10 abc" or "2 abc". -- nosy: +shreyanavigyan ___ Python tracker __

[issue44083] problem with updated 3.9.5

2021-05-09 Thread Eric V. Smith
Eric V. Smith added the comment: Also: How are you executing this code? From IDLE? From the command line? -- status: pending -> open ___ Python tracker ___ ___

[issue44083] problem with updated 3.9.5

2021-05-09 Thread Eric V. Smith
Eric V. Smith added the comment: This is almost certainly not a bug in python. You're probably entering an empty string for "a". Try it without using input(). For example, replace lines 2 and 3 with: a = "3" b = "4" -- nosy: +eric.smith status: open -> pending __

[issue44083] problem with updated 3.9.5

2021-05-08 Thread Swarnila Chakma
New submission from Swarnila Chakma : the codes were running okay with the version 3.9.4. But yesterday after updating the new version 3.9.5, the same codes are showing error. For example, if I were to write a code about swapping numbers, i write the code: print('Enter two variables') a = inp