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
Document preview thumbnail
Preview 2 out of 5 pages
Exam (elaborations)

C 859: Introduction to Programming in Python

Document preview thumbnail
Preview 2 out of 5 pages

C 859: Introduction to Programming in Python Slice Notation - answermy_str[start:end] will create a substring from my_str index start through to end - 1 Slice Notation with Stride - answermy_str[start:end:stride] Field Width - answerminimum number of characters that must be inserted into a string my_str='{name:16}{goals:8}' Alignment Character - answerdetermines how a value should be aligned within the width of the field my_str='[name:16}{goals:8}{points:^6}' Fill Character - answerused to pad a replacement field when the string being inserted is smaller than the field width {score:04} produces 0018 Floating-point Precision - answerformat specification which indicates how many digits to the right of the decimal should be included in the output of floating types '{:.1f}'.format(1.725) produces 1.7 Replace (old and new parameters) - answerreturns a copy of the string with all occurrences of the substring old replaced by the string new; old and new arguments may be string variables or string literals ce('one', 'two') will replace any occurrence of the word one with two Replace (old, new and count parameters) - answerreturns a copy of the string with all occurences of the substring old replaced by the new except only replaces the first count occurrences of old ce('one', 'two', 5) will replace any occu

Content preview

©EXAM STUDY MATERIAL 8/9/2024 11:50 AM



C 859: Introduction to Programming in
Python

Slice Notation - answer✔✔my_str[start:end]
will create a substring from my_str index start through to end - 1

Slice Notation with Stride - answer✔✔my_str[start:end:stride]

Field Width - answer✔✔minimum number of characters that must be inserted into a string
my_str='{name:16}{goals:8}'

Alignment Character - answer✔✔determines how a value should be aligned within the width of
the field
my_str='[name:<16}{goals:>8}{points:^6}'

Fill Character - answer✔✔used to pad a replacement field when the string being inserted is
smaller than the field width
{score:0>4} produces 0018

Floating-point Precision - answer✔✔format specification which indicates how many digits to the
right of the decimal should be included in the output of floating types
'{:.1f}'.format(1.725) produces 1.7

Replace (old and new parameters) - answer✔✔returns a copy of the string with all occurrences
of the substring old replaced by the string new; old and new arguments may be string variables
or string literals
phrase.replace('one', 'two') will replace any occurrence of the word one with two

Replace (old, new and count parameters) - answer✔✔returns a copy of the string with all
occurences of the substring old replaced by the new except only replaces the first count
occurrences of old
phrase.replace('one', 'two', 5) will replace any occurrances of 'one' with 'two' but will begin
looking at index 5

, ©EXAM STUDY MATERIAL 8/9/2024 11:50 AM


Find (with x variable) - answer✔✔string method that returns the index of the first occurrence of
item x in the string, else returns -1
my_str.find('!') will return the index of the '!' in the string

Find (with x, and start parameter) - answer✔✔string method that will return the index of the first
occurrence of item x in the string but will begin looking at index start
my_str.find('!', 3) will produce the index of the first ! on or after index 3

Find (with x, start and end parameter) - answer✔✔string method that will return the index of the
first occurrence of item x in the string but will begin looking at the index start and will stop at
index end -1
my_str.find('!', 3, 8) will produce the index of the first ! but will start looking at index 3 and stop
looking at index 8 - 1

Rfind - answer✔✔string method that works the same as str.find(x) but looks for the parameter in
reverse, returning the last occurrence in the string
my_str.rfind('!') will give the index of the last ! in the string

Count - answer✔✔string method that returns the number of times x occurs in the string
my_str.count('oo') will return the number of times 'oo' occurs in the string

isalnum() - answer✔✔string method that returns true if all characters in the string are lowercase
or uppercase letters or the numbers 0-9

isdigit() - answer✔✔string method that returns true if all characters are the numbers 0-9

islower() - answer✔✔string method that returns true if all cased characters are lowercase letters

isupper() - answer✔✔string method that return true if all cased characters are uppercase letters

isspace() - answer✔✔string method that returns true if all characters are whitespace

startswith(x) - answer✔✔string method that that returns true if the string starts with x

endswith(x) - answer✔✔string method that returns true if the string ends with x

capitalize() - answer✔✔string method that returns a copy of the string with the first character
capitalized and the rest lowercased

lower() - answer✔✔string method that returns a copy of the string with all characters lowercased

upper() - answer✔✔string method that returns a copy of the string with all characters uppercased

Document information

Uploaded on
August 17, 2024
Number of pages
5
Written in
2024/2025
Type
Exam (elaborations)
Contains
Questions & answers
$10.99

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

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.
Brightstars
3.3
(38)
Sold
253
Followers
7
Items
13601
Last sold
6 days ago


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