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 C859 Python Exam Prep 2023 with complete solution

Rating
-
Sold
-
Pages
12
Grade
A+
Uploaded on
05-07-2023
Written in
2022/2023

WGU C859 Python Exam Prep 2023 with complete solution Minimum field width with strings print('Student name (%5s)' % 'Bob' the 5 specifies that there are a minimum of 5 characters and thus the print out would be ( Bob) Conversion flags alter the output of conversion specifiers %08d adds leading zeros to the minimum width of 8 characters precision components(Rounding) Indicates how many digits to the right of the decimal should be included '%.1f' % 1.725 indicates a precision of 1 resulting in 1.7 .replace() replace(old,new,count) count replaces only the first occurrence count can be left out translation = ce('one', 'uno') .find(x) Returns the position of the first occurrence of item x in the string if my_str is 'Boo Hoo!' my_('!') Returns 7 ('Boo') Returns 0 my_('oo') returns 1 find(x, start) Same as find(x) but begins the search at position start find(x, start, end) Same as find(x,start) but stops the search at position end rfind(x) Same as find but searches the string in reverse, returning the last occurrence in the string count(x) Returns the number of times x occurs in the string using in operator to check if a character or substring is contained in the string if 'b' in my_string Comparing Strings may be compared using relational operators ( = etc..) equality operators (==,!=) membership operators (in,not in) identity operators (is, is not) my_str = 'Hello' my_str == 'Hello" evaluates to True relational comparison will compare the ASCII unicode values. if a string is shorter with all the same characters then the shorter is considered less than Do not use identity operators where you should be using an equality operator comparisons are case sensitive isalnum()

Show more Read less
Institution
Course

Content preview

WGU C859 Python Exam Prep 2023 with complete
solution

Minimum field width with strings
print('Student name (%5s)' % 'Bob'
the 5 specifies that there are a minimum of 5 characters and thus the print out would be
( Bob)
Conversion flags
alter the output of conversion specifiers
%08d adds leading zeros to the minimum width of 8 characters
precision components(Rounding)
Indicates how many digits to the right of the decimal should be included
'%.1f' % 1.725 indicates a precision of 1 resulting in 1.7
.replace()
replace(old,new,count)
count replaces only the first occurrence
count can be left out
translation = translation.replace('one', 'uno')
.find(x)
Returns the position of the first occurrence of item x in the string
if my_str is 'Boo Hoo!'
my_str.find('!') Returns 7
my-str.find('Boo') Returns 0
my_str.find('oo') returns 1
find(x, start)
Same as find(x) but begins the search at position start
find(x, start, end)
Same as find(x,start) but stops the search at position end
rfind(x)
Same as find but searches the string in reverse, returning the last occurrence in the
string
count(x)
Returns the number of times x occurs in the string
using in operator to check if a character or substring is contained in the string
if 'b' in my_string
Comparing Strings
may be compared using relational operators (<> <= etc..)
equality operators (==,!=)
membership operators (in,not in)
identity operators (is, is not)
my_str = 'Hello'
my_str == 'Hello" evaluates to True

, relational comparison will compare the ASCII unicode values. if a string is shorter with
all the same characters then the shorter is considered less than

Do not use identity operators where you should be using an equality operator

comparisons are case sensitive
isalnum()
Returns True if all characters int he string are lowercase or uppercase letters, or the
numbers 0-9
isdigit()
Returns True if all characters are the numbers 0-9
islower()
Returns True if all characters are lowercase letters
isupper()
Returns True if all characters are uppercase letters
isspace()
Returns True if all characters are whitespace
startswith(x)
Returns True if the string starts with x
endswith(x)
Returns True if the string ends with x
capitalize()
Returns a copy of the string with the first character capitalized and rest lowercased
lower()
Returns a copy of the string with all characters lowercased
upper()
Returns a copy of the string with all characters uppercased
strip()
Returns a copy of the string with leading and trailing whitespace removed

can be used to turn a string literal into a list of items by using the whitespace character
as the default separator

if it was strip(/) the default separator would be the / character. If the string contained a
double // then an empty list element would be created
title()
Returns a copy of the string with the first letters of words capitalized
Good practice for input() data transformations
apply the transformations when reading in data as opposed to later in the program
join()
Works in reverse to split()
It joins a list of strings together to create a single string

my_str = '@'.join(['billgates', 'microsoft']) binds the name my_str to a new string object
with the value 'billgates@microsoft'

Written for

Course

Document information

Uploaded on
July 5, 2023
Number of pages
12
Written in
2022/2023
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

$11.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.
ACADEMICAIDSTORE Chamberlain College Of Nursing
Follow You need to be logged in order to follow users or courses
Sold
1211
Member since
4 year
Number of followers
892
Documents
12012
Last sold
1 week ago
ACADEMICAID STORE

Welcome to ACADEMICAID store! We specialize in reliable test banks, exam questions with verified answers, practice exams, study guides, and complete exam review materials to help students pass on the first try. Our uploads support Nursing programs, professional certifications, business courses, accounting classes, and college-level exams. All documents are well-organized, accurate, exam-focused, and easy to follow, making them ideal for quizzes, midterms, finals, ATI &amp; HESI prep, NCLEX-style practice, certification exams, and last-minute reviews. If you’re looking for trusted test banks, comprehensive exam prep, and time-saving study resources, you’re in the right place.

Read more Read less
4.1

176 reviews

5
98
4
29
3
28
2
6
1
15

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