- Notifications
You must be signed in to change notification settings - Fork 0
Implement Standard File Read/Write #5
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
Activity
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
The user can write new content to file, add content to existing file, or read data from file.
Python syntax:
with open(filename, type) as f:Where filename is retrieved from user, i/o type can be either 'r' (read), 'w' (write), or 'a' (append).
The corresponding PyJSON syntax should be a start-end pair (Take existed for loop for reference).
Tasks: