1.程序块语法方面: c/c++中用一对“{}”将多段语句括起来,表示一个程序块,并以右大括号表明程序块结束 ;i<n;i++) { cout<<a[i]; j+=; } Python中用缩进方式表明某几句语句为同一程序段 for i in n: print(a) j+=1 2.对for循环的使用 c/c++中用如下形式:for(i=0;i<n;i++){语句},主要是以某一可控值(如:n)控制循环的进行 Python中采用如下形式:for i in range:,采用序列的方式控
#瓦登尔湖词频统计: import string path = 'D:/python3/Walden.txt' with open(path,'r',encoding= 'utf-8') as text: words = [raw_word.strip(string.punctuation).lower() for raw_word in text.read().split()] words_index = set(words) counts_dict = {index:words.count(