任务一:Python实现wordcount
text = """
Got this panda plush toy for my daughter's birthday,
who loves it and takes it everywhere. It's soft and
super cute, and its face has a friendly look. It's
a bit small for what I paid though. I think there
might be other options that are bigger for the
same price. It arrived a day earlier than expected,
so I got to play with it myself before I gave it
to her.
"""
def wordcount(text):
import re
words = re.split(r"[ ,.\n]+", text)
count_map = {}
for word in words:
if not word:
continue
simplized = word.lower()
if simplized in count_map:
count_map[simplized ] += 1
else:
count_map[simplized ] = 1
return count_map
任务二:Vscode连接InternStudio debug笔记
打开VSCode和开发机,在页面的左侧找到远程选项卡,填写服务器信息