Python

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson
Download our mobile app to listen on the go
Get App

Questions and Answers

What is a basic object type in Python?

  • Functions
  • Classes
  • Numbers (correct)
  • Modules

What is a characteristic of integers in Python?

  • They always have a decimal point.
  • They are enclosed in quotes.
  • They can only be positive.
  • They have no fractional part. (correct)

Which of the following is an example of a floating-point number in Python?

  • -5
  • 10
  • 1000
  • 3.14 (correct)

In Python, what does the ** operator do?

<p>Exponentiation (A)</p> Signup and view all the answers

What type of information do string objects contain?

<p>Textual data (D)</p> Signup and view all the answers

What does the len() function do when used with a string?

<p>Returns the length of the string (D)</p> Signup and view all the answers

In Python string indexing, what does an index of 0 represent?

<p>The first character (B)</p> Signup and view all the answers

What does negative indexing in Python strings allow you to do?

<p>Access characters from the end of the string (C)</p> Signup and view all the answers

What does string slicing allow you to extract?

<p>A larger section of a string (C)</p> Signup and view all the answers

What operation does the + operator perform on strings in Python?

<p>Concatenation (C)</p> Signup and view all the answers

What is the purpose of the find() method in Python strings?

<p>To find a substring and return its location (B)</p> Signup and view all the answers

What value does the find() method return if the substring is not found?

<p>-1 (A)</p> Signup and view all the answers

Which string method replaces a specified substring with another substring?

<p>replace() (C)</p> Signup and view all the answers

What does the split() method do to a string?

<p>Splits a string into a list of substrings (D)</p> Signup and view all the answers

What is the purpose of the special character \n in a string?

<p>Represents a newline (C)</p> Signup and view all the answers

What is the function of the special character \t in a string?

<p>Tab (A)</p> Signup and view all the answers

What is a key characteristic of lists in Python?

<p>They are positionally ordered. (A)</p> Signup and view all the answers

What does the append() method do to a list?

<p>Adds an element to the end of the list (B)</p> Signup and view all the answers

Which list method removes an element from a specific position in the list?

<p>pop() (C)</p> Signup and view all the answers

What does it mean for lists to be 'mutable'?

<p>They can grow and shrink. (C)</p> Signup and view all the answers

What are dictionaries also known as in Python?

<p>Mappings (D)</p> Signup and view all the answers

How are dictionaries represented?

<p>As 'key:value' pairs (A)</p> Signup and view all the answers

How are values accessed in a dictionary?

<p>By their key (B)</p> Signup and view all the answers

What is the purpose of a 'for' loop?

<p>To step through all items in a sequence (D)</p> Signup and view all the answers

What is the correct syntax for an if statement?

<p><code>if x == 3:</code> (A)</p> Signup and view all the answers

In Python, what is a programming error commonly called?

<p>A bug (B)</p> Signup and view all the answers

What should you do first when debugging?

<p>Read the error message (D)</p> Signup and view all the answers

Which of the following is a good debugging practice?

<p>Try one thing at a time (D)</p> Signup and view all the answers

What is the best attitude to have when debugging?

<p>Be patient and keep trying (D)</p> Signup and view all the answers

Why is it recommended to familiarize yourself with online resources during debugging?

<p>To quickly find solutions and understand errors (D)</p> Signup and view all the answers

Flashcards

Integers

Whole numbers without a fractional part, e.g., 1, 2, -7, 5381.

Floating-point Numbers (Floats)

Numbers with a fractional part, e.g., 3.14159, -20.7, 1.00.

Addition

Adding numbers together using the + operator.

Subtraction

Subtracting numbers using the - operator.

Signup and view all the flashcards

Multiplication

Multiplying numbers using the * operator.

Signup and view all the flashcards

Exponentiation

Raising a number to a power using the ** operator.

Signup and view all the flashcards

Strings

Objects that contain textual information.

Signup and view all the flashcards

String Indexing

Retrieving a character from a string using its position.

Signup and view all the flashcards

String Slicing

Extracting a portion of a string.

Signup and view all the flashcards

String Concatenation

Combining strings together using the + operator.

Signup and view all the flashcards

String Repetition

Repeating a string multiple times using the * operator.

Signup and view all the flashcards

Polymorphism

The meaning of an operator depends on the objects being operated on.

Signup and view all the flashcards

String Methods

Functions that are specific to string objects.

Signup and view all the flashcards

String find() Method

A method that finds the location of a substring.

Signup and view all the flashcards

String replace() Method

A method that replaces a specified substring with another string.

Signup and view all the flashcards

String split() Method

A method that divides a string into a list of substrings based on a delimiter.

Signup and view all the flashcards

String upper() Method

A method that converts a string to uppercase.

Signup and view all the flashcards

String lower() Method

A method that converts a string to lowercase.

Signup and view all the flashcards

Newline Character (\n)

Character that represents a new line.

Signup and view all the flashcards

Tab Character (\t)

Character that represents horizontal space.

Signup and view all the flashcards

Lists

Positionally ordered collections of objects.

Signup and view all the flashcards

len() with Lists

Determines the number of objects in a list.

Signup and view all the flashcards

List Slicing

Used to extract a section of a list.

Signup and view all the flashcards

List Concatenation

Adding two lists together.

Signup and view all the flashcards

List Repetition

Repeating lists.

Signup and view all the flashcards

Mutable Lists

Lists can grow and shrink.

Signup and view all the flashcards

List append() Method

Adds an element to the end of a list.

Signup and view all the flashcards

List pop() method

Removes an element by index.

Signup and view all the flashcards

Dictionaries

Dictionaries are also known as mappings; they map keys to associated objects.

Signup and view all the flashcards

Bug

A programming error.

Signup and view all the flashcards

Study Notes

Basic Object Types

  • Python has four: Numbers, Strings, Lists, and Dictionaries

Numbers in Python

  • Integers do not have a fractional part
  • Example integers include 1, 2, 3, -7, and 5381
  • Floating-point numbers ('floats') have fractional parts
  • Example floats include 3.14159, -20.7, and 1.00
  • Normal mathematical operations can be performed on numbers

Mathematical Operations

  • Addition: 123 + 222 = 345
  • Subtraction: 65 - 17 = 48
  • Multiplication: 1.5 * 4 = 6.0
  • Exponentiation: 2 ** 3 = 8

Strings in Python

  • String objects contain textual information
  • Example: S = 'Spam!'
  • Strings are sequences of one-character strings
  • The length of a string can be found using the function len()
  • For example, len(S) would return 5 for the string 'Spam!'

String Indexing

  • Left-to-right indexing starts at 0
  • For example, if S = 'Spam!', then S[0] is 'S', S[1] is 'p', and S[2] is 'a'
  • Python allows backward indexing
  • For example, S[-1] is '!', S[-2] is 'm', and S[-3] is 'a'
  • Slicing extracts a larger section
  • For instance, S[0:5] gives 'Spam!' (up to, but not including index 5) and S[1:3] gives 'pa' (index 1 & 2)
  • Excluding the first or last character: S[:] is 'Spam!' (the whole thing), S[:-1] is 'Spam' (everything but the last character), and S[1:] is 'pam!' (everything but the first character)

Basic String Operators

  • String concatenation: 'abc' + 'def' results in 'abcdef'
  • String repetition: S * 8 results in 'Spam!Spam!Spam!Spam!Spam!Spam!Spam!Spam!' if S = 'Spam!'
  • Polymorphism is when the meaning of an operator depends on the objects being operated on

String Methods

  • Strings have type-specific methods
  • Methods are called by typing object.method(argument)
  • The find method looks for a substring and returns its location
  • For example, S.find('am') returns 2
  • The find method returns -1 if the substring doesn't exist
  • For example, S.find('zp') returns -1
  • The replace method replaces a specified substring
  • For example, S.replace('am', 'XYZ') results in 'SpXYZ!'
  • The split method splits a string into a list of substrings using a specified delimiter
  • Example: line = 'aaa,bbb,ccc,ddd' turns to line.split(',') equaling ['aaa', 'bbb', 'ccc', 'ddd']
  • Python documentation has a list of string methods
  • S.upper() converts a string to uppercase
  • For example, S.upper() results in 'SPAM!'
  • S.lower() converts a string to lowercase
  • For example, S.lower() results in 'spam!'

Special String Characters

  • The newline character is '\n'
  • The tab character is '\t'

Lists

  • Lists are positionally ordered collections of objects
  • Objects in lists may be of different types
  • An example of a list is L = [123, 'spam', 1.23]

Lists in Python

  • Sequence operations also apply to lists
  • len(L) returns the number of objects in a list
  • L[0] returns the first element
  • List slicing is possible with L[:-1]
  • List concatenation: L + [4, 5, 6]
  • List repetition: L * 2

List Methods

  • Lists are mutable, and can grow and shrink
  • L.append('NI!') adds 'NI!' to the end of the list
  • L.pop(2) removes the element at index 2 and returns it
  • List contents can be changed
  • List contents can be sorted using L.sort()
  • List contents can be reversed using L.reverse()

Dictionaries in Python

  • Dictionaries are also known as mappings
  • Dictionaries map keys to associated objects
  • They are useful for databases
  • Dictionaries are represented as "key:value" pairs

Mapping Operations

  • Dictionaries are represented as "key:value" pairs
  • Values are accessed using their key as an index
  • Create new entries incrementally
  • Dictionaries can be used to update quantitative information
  • x += 1 is short for x = x + 1

The if/else Statement

  • Numbers: if x == 3: print(’three’)
  • Strings: if x == ’ja’: print(’yes!’) else: print(’no!’)

The for Loop

  • The for loop provides a way to step through all items in a sequence and apply an operation on each item
  • Items in a dictionary can be sorted for iteration
  • Example of looping through numbers: for x in range(1, 11): print(x) # Numbers 1 to 10 will be printed
  • Strings can be looped though for x in ’spam’: print(x.upper())

Debugging

  • A programming error is called a 'bug'
  • Detecting and eradicating bugs is important
  • Two challenges in debugging are: detecting what’s wrong and how to fix it
  • Read the error message
  • Insert print statements to track progression and check values
  • Always run intermediate versions of your code during software development
  • Errors are often single-character typos, so be precise
  • Familiarize yourself with online resources and tutorials
  • Try one thing at a time
  • Always try; don't be shy
  • Debugging is a puzzle, and is part of computational work.
  • Be patient and keep trying

Studying That Suits You

Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

Quiz Team

Related Documents

More Like This

String and Rational Numbers ADT Quiz
34 questions
Toán Học Lớp 6
21 questions

Toán Học Lớp 6

FragrantGuitar8770 avatar
FragrantGuitar8770
JavaScript Strings and Numbers
41 questions
Use Quizgecko on...
Browser
Browser