Geschreven door studenten die geslaagd zijn Direct beschikbaar na je betaling Online lezen of als PDF Verkeerd document? Gratis ruilen 4,6 TrustPilot
logo-home
Tentamen (uitwerkingen)

WGU D335 Python Programming Practice Assessment 2: Comprehensive Evaluation of Core Programming Logic Including Input Processing, Arithmetic Computation, Iterative Multiplication and Distance Calculation Models, File Handling Using Open(), Read(), and Wri

Beoordeling
-
Verkocht
-
Pagina's
11
Cijfer
A+
Geüpload op
12-06-2026
Geschreven in
2025/2026

WGU D335 Python Programming Practice Assessment 2: Comprehensive Evaluation of Core Programming Logic Including Input Processing, Arithmetic Computation, Iterative Multiplication and Distance Calculation Models, File Handling Using Open(), Read(), and Write() Methods, Text File Manipulation and String Concatenation Techniques, CSV File Parsing Using Python CSV Module, Dictionary Construction from Structured Data, Data Type Identification Using type() and name Attribute, Integer-Based Indexing and List Data Structure Manipulation, Unit Conversion Algorithms (Ounces to Pounds and Tons), Mathematical Operations Using Math Module Including Factorial Computation, Boolean Logic Evaluation and Conditional Branching, Formatted Output Using String Formatting and f-Strings, Exception-Free Input Handling, Loopless Procedural Programming Logic, Data Structure Traversal, Built-In Function Application, Modular Code Design Principles, Computational Problem Solving Using Arithmetic Operators Exam Questions Verified and Provided with Complete A+ Graded Answers Latest Updated 2026 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) () 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, "". 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 r(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.

Meer zien Lees minder
Instelling
Vak

Voorbeeld van de inhoud

WGU D335 Python Programming Practice Assessment 2:
Comprehensive Evaluation of Core Programming Logic Including
Input Processing, Arithmetic Computation, Iterative Multiplication
and Distance Calculation Models, File Handling Using Open(),
Read(), and Write() Methods, Text File Manipulation and String
Concatenation Techniques, CSV File Parsing Using Python CSV
Module, Dictionary Construction from Structured Data, Data Type
Identification Using type() and name Attribute, Integer-Based
Indexing and List Data Structure Manipulation, Unit Conversion
Algorithms (Ounces to Pounds and Tons), Mathematical Operations
Using Math Module Including Factorial Computation, Boolean Logic
Evaluation and Conditional Branching, Formatted Output Using
String Formatting and f-Strings, Exception-Free Input Handling,
Loopless Procedural Programming Logic, Data Structure Traversal,
Built-In Function Application, Modular Code Design Principles,
Computational Problem Solving Using Arithmetic Operators Exam
Questions Verified and Provided with Complete A+ Graded Answers
Latest Updated 2026




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}')

Geschreven voor

Instelling
Vak

Documentinformatie

Geüpload op
12 juni 2026
Aantal pagina's
11
Geschreven in
2025/2026
Type
Tentamen (uitwerkingen)
Bevat
Vragen en antwoorden

Onderwerpen

$16.99
Krijg toegang tot het volledige document:

Verkeerd document? Gratis ruilen Binnen 14 dagen na aankoop en voor het downloaden kun je een ander document kiezen. Je kunt het bedrag gewoon opnieuw besteden.
Geschreven door studenten die geslaagd zijn
Direct beschikbaar na je betaling
Online lezen of als PDF

Maak kennis met de verkoper

Seller avatar
De reputatie van een verkoper is gebaseerd op het aantal documenten dat iemand tegen betaling verkocht heeft en de beoordelingen die voor die items ontvangen zijn. Er zijn drie niveau’s te onderscheiden: brons, zilver en goud. Hoe beter de reputatie, hoe meer de kwaliteit van zijn of haar werk te vertrouwen is.
LectDeniz Teachme2-tutor
Volgen Je moet ingelogd zijn om studenten of vakken te kunnen volgen
Verkocht
21
Lid sinds
2 jaar
Aantal volgers
13
Documenten
5019
Laatst verkocht
8 maanden geleden
Lect Deniz Academic Resources Hub

Lect Deniz is a highly experienced academic tutor and dedicated content creator with a strong track record of developing comprehensive, high-quality study materials for a wide range of university courses across the globe. With years of experience in higher education support, he excels at transforming complex academic concepts into clear, structured, and easy-to-follow resources that enhance student understanding and confidence. He provides an extensive collection of well-researched and carefully organized documents across key disciplines, including nursing, medicine, and various science fields. His materials cover essential topics such as anatomy, physiology, pharmacology, clinical practice, and core scientific principles, making them highly valuable for both coursework and intensive exam preparation. Each document is thoughtfully designed to align with university standards and curricula, ensuring accuracy, relevance, and practical application. Lect Aziim’s work stands out for its clarity, depth, and attention to detail, offering students concise summaries, detailed explanations, and exam-focused content that supports effective revision. His commitment to academic excellence and student success is reflected in the consistency and reliability of his materials, making him a trusted resource for learners seeking to improve performance and achieve their academic goals.

Lees meer Lees minder
5.0

1 beoordelingen

5
1
4
0
3
0
2
0
1
0

Recent door jou bekeken

Waarom studenten kiezen voor Stuvia

Gemaakt door medestudenten, geverifieerd door reviews

Kwaliteit die je kunt vertrouwen: geschreven door studenten die slaagden en beoordeeld door anderen die dit document gebruikten.

Niet tevreden? Kies een ander document

Geen zorgen! Je kunt voor hetzelfde geld direct een ander document kiezen dat beter past bij wat je zoekt.

Betaal zoals je wilt, start meteen met leren

Geen abonnement, geen verplichtingen. Betaal zoals je gewend bent via iDeal of creditcard en download je PDF-document meteen.

Student with book image

“Gekocht, gedownload en geslaagd. Zo makkelijk kan het dus zijn.”

Alisha Student

Bezig met je bronvermelding?

Maak nauwkeurige citaten in APA, MLA en Harvard met onze gratis bronnengenerator.

Bezig met je bronvermelding?

Veelgestelde vragen