You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Having non-function code around (above and below) your functions makes it a bit confusing to understand how the code flows. Maybe consider grouping the functions in one area and having the non-function code below (or above) the functions to stand out. Also maybe include a main() (non-issue) so that it looks more clearer to a user.
Your code could also use a bit more documentation to explain what is happening at certain lines of code (For example in your process_txt_file() function adding more comments when opening a file for reading/writing)
The text was updated successfully, but these errors were encountered:
Code formatting:
Having non-function code around (above and below) your functions makes it a bit confusing to understand how the code flows. Maybe consider grouping the functions in one area and having the non-function code below (or above) the functions to stand out. Also maybe include a main() (non-issue) so that it looks more clearer to a user.
Your code could also use a bit more documentation to explain what is happening at certain lines of code (For example in your process_txt_file() function adding more comments when opening a file for reading/writing)
The text was updated successfully, but these errors were encountered: