Important datatype conversions
List to string
List in string can be done using the "join()" method.
listx = ["hello","how","are","you"]
listz =['1','2','3','4']
str1 = ' '.join(listx)
str2 = ','.join(listz)
print(str1)
print(str2)
'''
hello how are you
1,2,3,4
'''
String to li...
codeverses.hashnode.dev1 min read