2017-02-28编程语言关于python变量名的几点注意Points1.类似__xxx__的变量名,以双下划线开头,且以双下划线结尾的,是特殊变量。特殊变量可以直接访问,不是private变量。不能用__name__,__score__这样的变量名。Read More
2017-02-26编程语言MIT 6.00.1x 计算机科学和Python编程导论 Set 1**Counting Vowels **Assume s is a string of lower case characters.Read More