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