[python入门笔记--代码加详细注释]Programming with Mosh
emoji converter(知识点:字典,映射)
message = input(">")#用户输入消息(先右边再写左边是个好习惯)
words=message.split(' ')#用空格将字符串分割(split里面的单引号或者双引号没多大影响)
print(words)
--执行--
>I love python so much
['I', 'love', 'pytho...
原创
2019-12-03 22:43:02 ·
417 阅读 ·
0 评论