+ 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.

4th Jan 2022, 3:22 AM
đ“đ“·đ“Œđ“±đ“Č𝓮đ“Ș (Anshika)
đ“đ“·đ“Œđ“±đ“Č𝓮đ“Ș (Anshika) - avatar
4 Respostas
+ 2
đ€đ§đŹđĄđąđ€đš 𝐒𝐱𝐧𝐠𝐡 Just use comma (,) at place of (+) , it quite simple then other methods. đŸ˜ŠđŸ„°đŸ˜Š
4th Jan 2022, 3:00 PM
Äarush Rajput
+ 4
remove the int() with x. x = input() # x is string & str + str is valid
4th Jan 2022, 3:26 AM
TOLUENE
TOLUENE - avatar
+ 2
Either replace the plus with a comma (in this case python inserts a space) or use "str(x)".
4th Jan 2022, 3:27 AM
Simon Sauter
Simon Sauter - avatar
+ 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 đ€đ§đŹđĄđąđ€đš 𝐒𝐱𝐧𝐠𝐡
14th Jan 2022, 3:51 AM
đ‘șđ‘Żđ‘Œđ‘©đ‘Żđ‘šđ‘Ž đ‘čđ‘šđ‘±
đ‘șđ‘Żđ‘Œđ‘©đ‘Żđ‘šđ‘Ž đ‘čđ‘šđ‘± - avatar