Escrito por estudiantes que aprobaron Inmediatamente disponible después del pago Leer en línea o como PDF ¿Documento equivocado? Cámbialo gratis 4,6 TrustPilot
logo-home
Document preview thumbnail
Vista previa 2 fuera de 5 páginas
Examen

C 859: Introduction to Programming in Python

Document preview thumbnail
Vista previa 2 fuera de 5 páginas

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

Vista previa del contenido

©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

Información del documento

Subido en
17 de agosto de 2024
Número de páginas
5
Escrito en
2024/2025
Tipo
Examen
Contiene
Preguntas y respuestas
$10.99

¿Documento equivocado? Cámbialo gratis Dentro de los 14 días posteriores a la compra y antes de descargarlo, puedes elegir otro documento. Puedes gastar el importe de nuevo.
Escrito por estudiantes que aprobaron
Inmediatamente disponible después del pago
Leer en línea o como PDF

Seller avatar
Los indicadores de reputación están sujetos a la cantidad de artículos vendidos por una tarifa y las reseñas que ha recibido por esos documentos. Hay tres niveles: Bronce, Plata y Oro. Cuanto mayor reputación, más podrás confiar en la calidad del trabajo del vendedor.
Brightstars
3.3
(38)
Vendido
253
Seguidores
7
Artículos
13601
Última venta
6 días hace


Por qué los estudiantes eligen Stuvia

Creado por compañeros estudiantes, verificado por reseñas

Calidad en la que puedes confiar: escrito por estudiantes que aprobaron y evaluado por otros que han usado estos resúmenes.

¿No estás satisfecho? Elige otro documento

¡No te preocupes! Puedes elegir directamente otro documento que se ajuste mejor a lo que buscas.

Paga como quieras, empieza a estudiar al instante

Sin suscripción, sin compromisos. Paga como estés acostumbrado con tarjeta de crédito y descarga tu documento PDF inmediatamente.

Student with book image

“Comprado, descargado y aprobado. Así de fácil puede ser.”

Alisha Student

Preguntas frecuentes