How to add 2 strings and print it

CODE




How to add 2 strings and print it

>>> a="joe warren is"
>>> b="52 years old"
>>> c=a+" "+b
>>> print(c)

Output:

joe warren is 52 years old


How to add 2 strings and print it How to add 2 strings and print it Reviewed by Unknown on December 10, 2018 Rating: 5

Post Comments

Programming copyright © 2018-19. Powered by Blogger.