0 0 mj Asked: March 17, 20222022-03-17T11:41:51+05:30 2022-03-17T11:41:51+05:30In: Python Write a program to append the text “Welcome” with the string entered by the user. 0 0 Write a program to append the text “Welcome” with the string entered by the user. python Share Facebook 1 Answer Voted Oldest Recent I'M ADMIN 2022-03-17T12:46:17+05:30Added an answer on March 17, 2022 at 12:46 pm #there are lots of ways to append or concatenate strings in python #code s1 = 'WELCOME' s2 = input("Enter string : ") s3 = ' '.join([s1, s2]) print(s3) Leave an answerCancel replyYou must login to add an answer. Username or email* Password* Remember Me! Forgot Password?
1 Answer