(solved)Python:- string + integer problem | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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 Answers
+ 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