Python求解
Random Story Generation: the context to next words dictionary-/1
Here is an example of a story list:
['And', 'the', 'fan,', 'and', 'the', 'cup,', 'And', 'the', 'ship,', 'and', 'the', 'fish.']
You have worked out that it makes sense to represent the context information as a dictionary where the keys are tuples of strings and the values are lists of strings.
Below, we have given you the first key; write the list of values for it. Fill in the dictionary with all the 2-word contexts and their values.
Reminder: Python is case sensitive, so 'And' and 'and' are not equal.
context_to_next_words = {('And', 'the'): ['fan'],... 你的问题是什么{:10_243:} 柿子饼同学 发表于 2021-3-14 18:54
你的问题是什么
考较你外语达到几级 wp231957 发表于 2021-3-14 19:00
考较你外语达到几级
emmm...大概意思是这样:{:10_321:}
随机故事生成:包含了几个单词和TA萌的上下文
--/1
这里咱举个栗子:
['And', 'the', 'fan,', 'and', 'the', 'cup,', 'And', 'the', 'ship,', 'and', 'the', 'fish.']
然后这时你就会惊奇得发现原来这个字典是有规律滴
其中键就是包含字符串的元组,值就是包含字符串的列表
主线任务1:写出相对应的字典,把所有单词和对应的上下文都写进去
不过要注意,py是大小写敏感的,所以‘and’和'And'是不一样的
以下是答案:
context_to_next_words = {('And','the'):['fan']......
==============================分割线===============================
我真是心态爆炸{:10_266:} 柿子饼同学 发表于 2021-3-14 19:18
emmm...大概意思是这样:
随机故事生成:包含了几个单词和TA萌的上下文
--/1
就是把 and the 放入元组
元组作为 键 插入到 字典 里
fan cup 啥的作为 键 对应的 值 插入到 字典 里
总感觉他这玩意是一个学校布置的作业
所以只讲解思路,楼主能够理解多少看自己,不提供源代码,学这门课得自己去敲代码
靠别人敲代码永远学不会 抱歉,英语不好,看不懂你的问题,能麻烦帮忙解释一下,你要求解什么吗?
页:
[1]