From aa16a38e3fb17b5838b0fa6e01b97a308e42fc3a Mon Sep 17 00:00:00 2001 From: llnu Date: Tue, 26 May 2020 10:39:57 +0200 Subject: [PATCH] removed temp file (global gitignore is now in place) --- balazs/python-the-hard-way/ex17/notes.org~ | 24 ---------------------- 1 file changed, 24 deletions(-) delete mode 100644 balazs/python-the-hard-way/ex17/notes.org~ diff --git a/balazs/python-the-hard-way/ex17/notes.org~ b/balazs/python-the-hard-way/ex17/notes.org~ deleted file mode 100644 index 852b46f..0000000 --- a/balazs/python-the-hard-way/ex17/notes.org~ +++ /dev/null @@ -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