Working with files: Difference between revisions
Mr. MacKenty (talk | contribs) (Created page with "right|frame|Object-Oriented Programming<ref>http://www.flaticon.com/</ref> There are several ways to present the output of a program; data...") |
Mr. MacKenty (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
[[file:Hierarchical-structure.png|right|frame|Object-Oriented Programming<ref>http://www.flaticon.com/</ref>]] | [[file:Hierarchical-structure.png|right|frame|Object-Oriented Programming<ref>http://www.flaticon.com/</ref>]] | ||
There are several ways to present the output of a program; data can be printed in a human-readable form, or written to a file for future use | There are several ways to present the output of a program; data can be printed in a human-readable form, or written to a file for future use. <ref>https://docs.python.org/3/tutorial/inputoutput.html</ref> | ||
== File input / output == | |||
== File formats == | |||
=== XML === | |||
=== JSON === | |||
=== Plain Text === | |||
Revision as of 12:21, 28 June 2019
There are several ways to present the output of a program; data can be printed in a human-readable form, or written to a file for future use. [2]
File input / output[edit]
File formats[edit]
XML[edit]
JSON[edit]
Plain Text[edit]
Helpful Links[edit]
- Click here for a cheatsheet for working with Python files
- This is a good newbie guide with examples for working with Python