GRADED A+
f1.read() - ANS>>read a file into a string
f1.write("hello!") - ANS>>writes to a file
f1.readline() - ANS>>reads next line
f1.close() - ANS>>closes a file (must always close a file!)
f1 = open("/my_path/my_file.text", "r") - ANS>>to open and read a file
f1 = open("/my_path/my_file.text", "w") - ANS>>to open and write a file (all previous
material discarded)
f1 = open("/my_path/my_file.text", "a") - ANS>>to open and add to a file
with open("/my_file...etc) as f: - ANS>>opens, allows work, and automatically closes a
file
timedelta - ANS>>time library function to calculate time amounts
from datetime import timedelta - ANS>>grabs timedelta from the datetime library
import datetime as dt - ANS>>imports a library as a specified variable
datetime.date.today().month - ANS>>to print current month (aka .day or .year for those)
beautiful soup - ANS>>HTML parsing library
NumPy - ANS>>scientific computing, matrices, array creation library
pandas - ANS>>data manipulation and analysis library
pillow (PIL) - ANS>>work with and manipulate images; python imaging library
pyglet - ANS>>multimedia / gaming creation library
pytz - ANS>>time zone data library
pip install import - ANS>>to install and import a
library into your code