4 lines
98 B
Text
4 lines
98 B
Text
|
|
V text = ‘Hello,How,Are,You,Today’
|
|||
|
|
V tokens = text.split(‘,’)
|
|||
|
|
print(tokens.join(‘.’))
|