Basic Python Operations Quiz

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 the output of print(2 ** 3)?

  • 8 (correct)
  • 6
  • 2
  • 3

How do you reverse a list in Python?

  • `list.reverse()` (correct)
  • `reversed(list)`
  • `list[::-1]` (correct)
  • `list.sort()`

How can you check if a number is even in Python?

  • By using the expression `number % 2 == 0` (correct)
  • By using the function `is_even(number)`
  • By using the expression `number / 2 == 1`
  • By checking if `number` is less than 0

What is the difference between list.append() and list.extend()?

<p>list.append() adds a single element to the end of the list, while list.extend() adds multiple elements. (A)</p> Signup and view all the answers

How do you remove duplicates from a list in Python?

<p>Using the <code>set()</code> function (A), Using a for loop with if statement (B)</p> Signup and view all the answers

How can you convert a string to lowercase in Python?

<p>Using the <code>lower()</code> method (B)</p> Signup and view all the answers

How do you check if a string contains only digits?

<p><code>string.isdigit()</code> (A)</p> Signup and view all the answers

What is the output of print('Python'[1:4])?

<p>'yth' (B)</p> Signup and view all the answers

How can you create a dictionary with keys from a list and all values set to zero?

<p><code>{key: 0 for key in list}</code> (A)</p> Signup and view all the answers

How do you find the length of a list in Python?

<p>Using the <code>len()</code> function (B)</p> Signup and view all the answers

Flashcards are hidden until you start studying

Study Notes

Python Basics

  • print(2 ** 3) outputs 8, as it uses the exponentiation operator (**).
  • list.reverse() or list[::-1] are methods to reverse a list in Python.

Number and String Operations

  • To check if a number is even, use number % 2 == 0.
  • string.lower() converts a string to lowercase.
  • Use string.isdigit() to check if a string contains only digits.

Working with Lists

  • list.append(value) adds a single value to the end of a list, while list.extend(iterable) adds elements from an iterable.
  • To remove duplicates from a list, convert it to a set using set(list) and back to a list.
  • print('Python'[1:4]) outputs 'yth', as it slices the string from index 1 to 3.

Dictionaries and Lists

  • Create a dictionary with keys from a list and values set to zero using {key: 0 for key in keys_list}.
  • Use len(list) to find the length of a list in Python.

Studying That Suits You

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

Quiz Team

More Like This

Use Quizgecko on...
Browser
Browser