Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Exam (elaborations)

WGU D335 Intro to Python | OA | Objective Assessment Latest Questions and 100% Correct Answers 2025/2026 Updated

Rating
-
Sold
-
Pages
9
Grade
A+
Uploaded on
29-06-2025
Written in
2024/2025

WGU D335 Intro to Python | OA | Objective Assessment Latest Questions and 100% Correct Answers 2025/2026 Updated

Institution
Course

Content preview

WGU D335 Intro to Python | OA | Objective Assessment Latest
Questions and 100% Correct Answers 2025/2026 Updated


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_travele-
dA + distance_traveledB + distance_trav-
eledC
print('Distance: {:.2f} miles'.format(total_miles_traveled))



1 | WGU D335 Intro to Python

, Create a solution that accepts an input identifying the name of a text fle, for example,
"WordTextFile1.txt". Each text fle contains three rows with one word per row. Using the open()
function and write() and read() methods, interact with the input text fle to write a new
sentence string composed of the three existing words to the end of the fle contents on a new
line. Output the new fle contents.
fle_name = input()
with open(fle_name, 'r') as f:
word1 = str(f.readline()).strip()
word2 = str(f.readline()).strip()
word3 = str(f.readline()).strip()
f = open(fle_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.
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


2 | WGU D335 Intro to Python

Written for

Institution
Course

Document information

Uploaded on
June 29, 2025
Number of pages
9
Written in
2024/2025
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

$19.49
Get access to the full document:

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
DynamicNurse Chamberlain College Of Nursng
Follow You need to be logged in order to follow users or courses
Sold
3812
Member since
4 year
Number of followers
2910
Documents
1849
Last sold
1 day ago

4.0

551 reviews

5
312
4
82
3
65
2
24
1
68

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions