WGU C859 Python Test 2023 with complete solution
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!...
WGU C859 Python Test 2023 with complete solution
f1 = open("/my_path/my_file.text", "r")
to open and read a file
f1 = open("/my_path/my_file.text", "w")
to open and write a file (all previous material discarded)
f1 = open("/my_path/my_file.text", "a")
to open and add to a file
f1.read()
read a file into a string
f1.write("hello!")
writes to a file
f1.readline()
reads next line
f1.close()
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
datetime.date.today().month
to print current month (aka .day or .year for those)
beautiful soup
HTML parsing library
NumPy
scientific computing, matrices, array creation library
pandas
data manipulation and analysis library
pillow (PIL)
work with and manipulate images; python imaging library
pyglet
multimedia / gaming creation library
pytz
time zone data library
pip install ____________ import _______________
to install and import a library into your code
math.ceil()
round down (4.5 = 4, 4.8 = 4, 4.1 = 4, 4.9 = 4)
math.floor()
round up (4.6 = 5, 4.7 = 5, 4.1 = 5, 4.2 = 5)
datetime.date.today()
Les avantages d'acheter des résumés chez Stuvia:
Qualité garantie par les avis des clients
Les clients de Stuvia ont évalués plus de 700 000 résumés. C'est comme ça que vous savez que vous achetez les meilleurs documents.
L’achat facile et rapide
Vous pouvez payer rapidement avec iDeal, carte de crédit ou Stuvia-crédit pour les résumés. Il n'y a pas d'adhésion nécessaire.
Focus sur l’essentiel
Vos camarades écrivent eux-mêmes les notes d’étude, c’est pourquoi les documents sont toujours fiables et à jour. Cela garantit que vous arrivez rapidement au coeur du matériel.
Foire aux questions
Qu'est-ce que j'obtiens en achetant ce document ?
Vous obtenez un PDF, disponible immédiatement après votre achat. Le document acheté est accessible à tout moment, n'importe où et indéfiniment via votre profil.
Garantie de remboursement : comment ça marche ?
Notre garantie de satisfaction garantit que vous trouverez toujours un document d'étude qui vous convient. Vous remplissez un formulaire et notre équipe du service client s'occupe du reste.
Auprès de qui est-ce que j'achète ce résumé ?
Stuvia est une place de marché. Alors, vous n'achetez donc pas ce document chez nous, mais auprès du vendeur ACADEMICAIDSTORE. Stuvia facilite les paiements au vendeur.
Est-ce que j'aurai un abonnement?
Non, vous n'achetez ce résumé que pour €9,68. Vous n'êtes lié à rien après votre achat.