How can I do this Python trick in Java?
>>> l = [1,2,3,4,5]
>>> print ' '.join(l)
1 2 3 4 5
This doesn't apply to Strings only. I am using generics and need to print any kind of value in the Array.
How can I do this Python trick in Java?
>>> l = [1,2,3,4,5]
>>> print ' '.join(l)
1 2 3 4 5
This doesn't apply to Strings only. I am using generics and need to print any kind of value in the Array.