Join method in string
Python 3.9.1 (tags/v3.9.1:1e5d33e, Dec 7 2020, 17:08:21) [MSC v.1927 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license()" for more information.
>>> ##join method in string
>>> string=("Allah","is","almerciful")
>>> "".join(string)
'Allahisalmerciful'
>>> " ".join(string)
'Allah is almerciful'
>>>
Comments
Post a Comment