- To join 2 strings
User Input: Blue
Sky
Output: BlueSky
s1=input("Enter your 1st string : ")
s2=input("Enter your 2nd string : ")
s3=s1+s2
print("Your Joined string : ",s3)
Enter your 1st string : Hello Enter your 2nd string : World Your Joined String : HelloWorldProgram
Coming Soon !
QuickPractice isn’t the thing you do once you’re good. It’s the thing you do that makes you good.