2 lines
69 B
Text
2 lines
69 B
Text
tokens = "Hello,How,Are,You,Today".split(",")
|
|
print tokens.join(".")
|
tokens = "Hello,How,Are,You,Today".split(",")
|
|
print tokens.join(".")
|