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