3 lines
83 B
Python
3 lines
83 B
Python
text = "Hello,How,Are,You,Today"
|
|
tokens = text.split(',')
|
|
print ('.'.join(tokens))
|