removed temp file (global gitignore is now in place)

This commit is contained in:
llnu 2020-05-26 10:39:57 +02:00
parent f9f6b41ce1
commit aa16a38e3f
1 changed files with 0 additions and 24 deletions

View File

@ -1,24 +0,0 @@
* Questions
** Why does Opening and Reading the file is done in 2 steps? What's the difference?
in_file = open(from_file)
indata = in_file.read()
"Opening" a file doesn't actually bring any of the data from the file into your program. It just prepares the file for reading (or writing), so when your program is ready to read the contents of the file it can do so right away.
*** Source:
https://stackoverflow.com/questions/20308998/what-is-the-difference-between-opening-and-reading-a-file-in-python
** What does 'w' mean? (from ex14)
target = open(filename, 'w')
It's a string with a character in it for the kind of mode for the file.
'w' = write
'r' = read
'a' = append
* Note
" character messes up the copy in org or emacs