Garantie de satisfaction à 100% Disponible immédiatement après paiement En ligne et en PDF Tu n'es attaché à rien 4.2 TrustPilot
logo-home
Examen

WGU D335 PRACTICE TEST 2

Note
-
Vendu
-
Pages
7
Grade
A+
Publié le
06-06-2024
Écrit en
2023/2024

Create a solution that accepts three integer inputs representing the number of times an employee travels to a job site. Output the total distance traveled to two decimal places given the following miles per employee commute to the job site. Output the total distance traveled to two decimal places given the following miles per employee commute to the job site: Employee A: 15.62 miles Employee B: 41.85 miles Employee C: 32.67 miles times_traveledA = int(input()) times_traveledB = int(input()) times_traveledC = int(input()) employeeA = 15.62 #miles employeeB = 41.85 #miles employeeC = 32.67 #miles distance_traveledA = times_traveledA * employeeA distance_traveledB = times_traveledB * employeeB distance_traveledC = times_traveledC * employeeC total_miles_traveled = distance_traveledA + distance_traveledB + distance_traveledC print('Distance: {:.2f} miles'.format(total_miles_traveled)) Create a solution that accepts an input identifying the name of a text file, for example, "WordTextF". Each text file contains three rows with one word per row. Using the open() function and write() and read() methods, interact with the input text file to write a new sentence string composed of the three existing words to the end of the file contents on a new line. Output the new file contents. file_name = input() with open(file_name, 'r') as f: word1 = str(ine()).strip() word2 = str(ine()).strip() word3 = str(ine()).strip() f = open(file_name, 'r') lines = ().splitlines() lines = ' '.join(lines) () prin

Montrer plus Lire moins
Établissement
WGU D335
Cours
WGU D335









Oups ! Impossible de charger votre document. Réessayez ou contactez le support.

École, étude et sujet

Établissement
WGU D335
Cours
WGU D335

Infos sur le Document

Publié le
6 juin 2024
Nombre de pages
7
Écrit en
2023/2024
Type
Examen
Contient
Questions et réponses

Sujets

Aperçu du contenu

WGU D335 PRACTICE TEST 2
Create a solution that accepts three integer inputs representing the number of times an employee travels to a job site. Output the total distance traveled to two decimal places given the following miles per employee commute to the job site. Output the total distance traveled to two decimal places given the following miles per employee commute to the job site:
Employee A: 15.62 miles
Employee B: 41.85 miles
Employee C: 32.67 miles
times_traveledA = int(input())
times_traveledB = int(input())
times_traveledC = int(input())
employeeA = 15.62 #miles
employeeB = 41.85 #miles
employeeC = 32.67 #miles
distance_traveledA = times_traveledA * employeeA
distance_traveledB = times_traveledB * employeeB
distance_traveledC = times_traveledC * employeeC
total_miles_traveled = distance_traveledA + distance_traveledB + distance_traveledC
print('Distance: {:.2f} miles'.format(total_miles_traveled))
Create a solution that accepts an input identifying the name of a text file, for example, "WordTextFile1.txt". Each text file contains three rows with one word per row. Using the open() function and write() and read() methods, interact with the input text file to write a new sentence string composed of the three existing words to the end of the file contents on a new line. Output the new file contents.
file_name = input()
with open(file_name, 'r') as f:
word1 = str(f.readline()).strip()
word2 = str(f.readline()).strip()
word3 = str(f.readline()).strip()
f = open(file_name, 'r')
lines = f.read().splitlines()
lines = ' '.join(lines)
f.close()
print(f'{word1}\n{word2}\n{word3}\n{lines}') Create a solution that accepts an integer input representing any number of ounces. Output the converted total number of tons, pounds, and remaining ounces based on the
input ounces value. There are 16 ounces in a pound and 2,000 pounds in a ton.
ounces_per_pound = 16
pounds_per_ton = 2000
number_ounces = int(input())
tons = number_ounces // (ounces_per_pound * pounds_per_ton)
remaining_ounces = number_ounces % (ounces_per_pound * pounds_per_ton)
pounds = remaining_ounces // ounces_per_pound
remaining_ounces = remaining_ounces % ounces_per_pound
print('Tons: {}'.format(tons))
print('Pounds: {}'.format(pounds))
print('Ounces: {}'.format(remaining_ounces))
Create a solution that accepts an input identifying the name of a CSV file, for example, "input1.csv". Each file contains two rows of comma-separated values. Import the built-in
module csv and use its open() function and reader() method to create a dictionary of key:value pairs for each row of comma-separated values in the specified file. Output the
file contents as two dictionaries.
import csv
input1 = input()
with open(input1, "r") as f:
data = [row for row in csv.reader(f)]
for row in data:
even = [row[i].strip() for i in range(0, len(row), 2)]
odd = [row[i].strip() for i in range(1, len(row), 2)]
pair = dict(zip(even, odd))
print(pair)
Create a solution that accepts an integer input representing the index value for any any of the five elements in the following list:
various_data_types = [516, 112.49, True, "meow", ("Western", "Governors", "University"), {"apple": 1, "pear": 5}]
Using the built-in function type() and getting its name by using the .name attribute, output data type (e.g., int”, “float”, “bool”, “str”) based on the input index value of the list element.
index_value = int(input())
name = various_data_types[index_value]
data_type = type(name).__name__
print(f"Element {index_value}: {data_type}")
€10,48
Accéder à l'intégralité du document:

Garantie de satisfaction à 100%
Disponible immédiatement après paiement
En ligne et en PDF
Tu n'es attaché à rien

Faites connaissance avec le vendeur

Seller avatar
Les scores de réputation sont basés sur le nombre de documents qu'un vendeur a vendus contre paiement ainsi que sur les avis qu'il a reçu pour ces documents. Il y a trois niveaux: Bronze, Argent et Or. Plus la réputation est bonne, plus vous pouvez faire confiance sur la qualité du travail des vendeurs.
Greaterheights Birkbeck, University of London
S'abonner Vous devez être connecté afin de suivre les étudiants ou les cours
Vendu
1120
Membre depuis
3 année
Nombre de followers
880
Documents
18315
Dernière vente
1 semaine de cela

4,1

216 revues

5
120
4
41
3
24
2
10
1
21

Récemment consulté par vous

Pourquoi les étudiants choisissent Stuvia

Créé par d'autres étudiants, vérifié par les avis

Une qualité sur laquelle compter : rédigé par des étudiants qui ont réussi et évalué par d'autres qui ont utilisé ce document.

Le document ne convient pas ? Choisis un autre document

Aucun souci ! Tu peux sélectionner directement un autre document qui correspond mieux à ce que tu cherches.

Paye comme tu veux, apprends aussitôt

Aucun abonnement, aucun engagement. Paye selon tes habitudes par carte de crédit et télécharge ton document PDF instantanément.

Student with book image

“Acheté, téléchargé et réussi. C'est aussi simple que ça.”

Alisha Student

Foire aux questions