integer = input("Number: ") rslt = int(integer)+2 print('2 + ' + integer + ' = ' + rslt) double = input("Point Number: ") print('2.5 + ' +double+' = ' +(float(double)+2.5)) Gives me
Traceback (most recent call last): File "C:\...", line 13, in <module> print('2 + ' + integer + ' = ' + rslt) TypeError: Can't convert 'int' object to str implicitly I'm fairly new to programming and my background is mostly just the basics of C# so far. I wanted to try to learn Python through doing all my C# school projects on Python. I'm used to the simple syntax of C# which would look something like this:
int integer = Convert.ToInt32(Console.ReadLine()) or
double double = Convert.ToDouble(Console.ReadLine()) Which takes a user input string and converts it to what I specified.
I think I read py2.x has a command called raw_input that works a bit better than the input command of py3.x in this regard.
I was trying to find myself a similar format as the one I'm used to in C# to use in Python, but it's proving surprisingly hard just to find a method to convert the user input string into an integer after all this googling and trying everything I could think of (and that I found on google) I decided it was time to ask. Can you help?
'2 + {} = {}') and more control even for simple cases, you have to deal with the extra spaces you get from commas). Less important reasons (at least for you) are that formatting is easier to use with dynamic values, easier to internationalize, and more portable between Python 2.x and 3.x. (If you writeprint(1,2), you get1 2in 3.x, but(1, 2)in 2.x.)