This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import re | |
| import os | |
| # Đường dẫn đến file txt ban đầu | |
| input_file_path = "words.txt" | |
| # Đường dẫn đến file txt mới sẽ ghi ra | |
| output_file_path = "tudien.txt" | |
| # Đọc nội dung file txt ban đầu |
NewerOlder