Today i downloaded my new python 3.8.5 version 32 bit in 64 bit PC and tried a simple addition program. This is my code:
value = input("Please enter a string:\n")
value2 = input("Please enter a string:\n")
value3 = value+value2
print(f'You entered {value+value2}')
print(f'You entered {value3}')
This is the result:
= RESTART: C:\Users\mcheg\AppData\Local\Programs\Python\Python38-32\trial_later delete filie1.py
Please enter a string:
12
Please enter a string:
34
You entered 1234
You entered 1234