[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 
<https://bugs.python.org/issue44083>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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?

--

___
Python tracker 
<https://bugs.python.org/issue44083>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue44083] problem with updated 3.9.5

2021-05-09 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 = input() #suppose 2 nilam
b = input()#suppose 3 nilam
x = int(a)
y = int(b)
x = x-y #now we stored value of x-y in x variable
y = x+y #now we stored value of x+y in y variable
x = y-x
print(x)
print(y)

And I get the following output:

File "C:/Users/Asus/PycharmProjects/celsius to fahrenheit/main.py", line 4, in 

x = int(a)
ValueError: invalid literal for int() with base 10: ''

I tried reinstalling the version 3.9.4, but it's the same result. It would be 
appreciable if it can be solved soon.

--
components: Windows
files: main.py
messages: 393299
nosy: paul.moore, steve.dower, swarnila707, tim.golden, zach.ware
priority: normal
severity: normal
status: open
title: problem with updated 3.9.5
versions: Python 3.9
Added file: https://bugs.python.org/file50026/main.py

___
Python tracker 
<https://bugs.python.org/issue44083>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com