top of page
4. File Processing
What are Files?
Files are everywhere in your computer. From the software that runs it to the documents you have saved, they are all tech.
How are Files Important?
For coders, files help process large data in code without compromising any performance. Python, in particular is
How do you use Input?
Calling the input function is very similar to printing. Instead of typing out the word print, type the word input followed by any information you would want to display into the console.
input("Enter your name: ")
But what if you wanted to save the input data. How could you do that?
It is quite simple. All you need to do write out a variable and make the input function be the value you want to store inside of the variable.
bottom of page