Answers for "how to add any string in list in ja va"

C
0

adding strings in the list

#!/usr/bin/python

msg = ' '.join(['There', 'are', 'three', 'eagles', 'in', 'the', 'sky'])
print(msg)
Posted by: Guest on September-23-2021

Code answers related to "C"

Browse Popular Code Answers by Language