textedit
textedit copied to clipboard
A super-mini Python text editor
Results
1
textedit issues
Sort by
recently updated
recently updated
newest added
Hi, Small question of a Python newbie. **File:** wordcount.py **Method:** ``` def word_count(self): """Returns a file's word count""" wc_file = self.open_file(self.filename) self = len(wc_file.split()) return ("Words:", len(wc_file.split())) ``` **Line 31:**...