+ 1
(solved)Python:- string + integer problem
Input:- x = int(input()) print ("The number is" + x) And I want the output:-(if input is 1) The number is 1. How can I do it. It is showing that int + str is invalid.
4 Respostas
+ 2
đđ§đŹđĄđąđ€đ đđąđ§đ đĄ
Just use comma (,) at place of (+) , it quite simple then other methods. đđ„°đ
+ 4
remove the int() with x.
x = input() # x is string & str + str is valid
+ 2
Either replace the plus with a comma (in this case python inserts a space) or use "str(x)".
+ 2
(solved)Python:- string + integer problem
Input:-
x = int(input())
print ("The number is" +str( x))
And I want the output:-(if input is 1)
The number is 1.
How can I do it.
It is showing that int + str is invalid.
Run this code....
It will run ...
You can't add a integer with string.
For this you have to convert integer into string for this use str() function
Menas
Print("The number is "+' '+str(x))
if you take integer as a input then you have to convert integer into string then your will not get error
đđ§đŹđĄđąđ€đ đđąđ§đ đĄ