C859 Python | 59 Questions and Answers(A+ Solution guide)
f1 = open("/my_path/my_", "r") - to open and read a file f1 = open("/my_path/my_", "w") - to open and write a file (all previous material discarded) f1 = open("/my_path/my_", "a") - to open and add to a file () - read a file into a string ("hello!") - writes to a file ine() - reads next line () - closes a file (must always close a file!) with open("/my_file...etc) as f: - opens, allows work, and automatically closes a file timedelta - time library function to calculate time amounts from datetime import timedelta - grabs timedelta from the datetime library import datetime as dt - imports a library as a specified variable ().month - to print current month (aka .day or .year for those) beautiful soup - HTML parsing library
Información del documento
- Subido en
- 3 de julio de 2023
- Número de páginas
- 5
- Escrito en
- 2022/2023
- Tipo
- Examen
- Contiene
- Preguntas y respuestas