Join_Strings_together_concatenate.py


Sign up Free. Don't forget to check out our challenges, lessons, solve and learn series and more ...


Code Snippet

s = "***";
seq = ("I", "love", "Python"); # This is sequence of strings.
print (s.join( seq ))


#or

print() #this just gives a space between printing the output
print()

string1="Mr"
string2="Moose"
fullname=string1+string2
print(fullname)
                    

Try it yourself