Which is correct to print the following ? Welcome-to-python-easy
print("Welcome"+"-to"+"+-python-easy")
print("welcome"+"-to"+"-python-easy")
print("welcome".title()+"-to"+"-python-easy")
print("Welcome"+"-to-"+"-python-easy")
"welcome".title() returns "Welcome" and "-" will concatenate the strings
Comment here: