python基礎2練習

1.要求輸入一個英文句子,統計該英文句子中含有的單詞數量及詞的種類  例:  輸入: i am very very happy  輸出: 5 4    主要代碼:  a = raw_input('輸入一個英文句子:')  str = a.split()  str1 = set(str)  print len(str),len(str1)   2.要求實現棧的部分功能如下:  o|O(pop):出棧
相關文章
相關標籤/搜索