Python Basics

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 correct file extension for Python files?

  • .py (correct)
  • .pt
  • .p
  • .pyth

Which of the following is a valid variable name in Python?

  • varName (correct)
  • var name
  • var-name
  • 2var

What is the output of print(2 + 3 * 2)?

  • 8 (correct)
  • 10
  • 6
  • 12

How do you start a comment in Python?

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

Which function is used to get user input in Python?

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

What does len("Hello") return?

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

What is the output of print(10 // 3)?

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

Which function is used to convert a string into an integer?

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

What keyword is used to define a function in Python?

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

Which syntax correctly starts a for loop that iterates 10 times?

<p>for i in range(10): (C)</p> Signup and view all the answers

What will be the output of the following if executed: print("Hello" + " " + "World")?

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

What does 1 == 1 return?

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

What is the correct way to open a file named data.txt for reading in Python?

<p>open(&quot;data.txt&quot;, &quot;r&quot;) (C)</p> Signup and view all the answers

What will print(type(5.0)) return?

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

Which of the following data types is mutable in Python?

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

Why does print(5 / 2) return 2.5 instead of 2?

<p>Python 3 uses float division by default (B)</p> Signup and view all the answers

What happens if you try to modify a tuple in Python?

<p>It throws an error (A)</p> Signup and view all the answers

Why is self used in class methods?

<p>To access instance attributes (D)</p> Signup and view all the answers

Why should you use list comprehension in Python?

<p>To improve readability and performance (C)</p> Signup and view all the answers

What will print(2**3) output?

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

What does my_dict.get("key", "default") do?

<p>Returns the value for &quot;key&quot; or &quot;default&quot; if key is missing (A)</p> Signup and view all the answers

A company needs to store user data for fast lookups. Which data type should they use?

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

You need to store unique values in a collection. Which data type should you use?

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

What will happen if you execute int("abc")?

<p>Throws a ValueError (D)</p> Signup and view all the answers

What does try-except handle in Python?

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

If a function is defined but never called, what impact does it have on the program?

<p>It will consume memory without any effect (B)</p> Signup and view all the answers

How can you improve the performance of a Python program that processes large datasets?

<p>Optimize algorithms and use built-in functions (A)</p> Signup and view all the answers

In what scenario would you prefer using a set over a list?

<p>When you need to perform membership tests efficiently (A)</p> Signup and view all the answers

How would you handle a situation where a function might raise an exception?

<p>Use a <code>try-except</code> block (D)</p> Signup and view all the answers

What is the result of the following code: print(list(range(4)))?

<p>[0, 1, 2, 3] (A)</p> Signup and view all the answers

Why is it important to use version control in programming?

<p>To keep track of changes and collaborate with others (A)</p> Signup and view all the answers

How can you create a new list that contains the squares of numbers from 1 to 10 using list comprehension?

<p>[x**2 for x in range(1, 11)] (D)</p> Signup and view all the answers

What is the primary purpose of using a virtual environment in Python?

<p>To isolate project dependencies (D)</p> Signup and view all the answers

If you want to ensure that a variable is not modified after it is assigned, which data type would you use?

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

How can you check if a key exists in a dictionary?

<p>key in my_dict (B)</p> Signup and view all the answers

What will the following code output given def example(a, b, c): print(a, a, a) and calling example("Hello", "Hello", "Hello")?

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

In Python, what is the result of using the is operator?

<p>It checks for identity (same object) (C)</p> Signup and view all the answers

Assuming you have two dictionaries, dict1 and dict2, how can you merge them into a single dictionary in Python 3.9 and later?

<p>dict1 | dict2 (D)</p> Signup and view all the answers

What is the output of the following code: print(10 % 4)?

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

Why is it beneficial to use functions in programming?

<p>To avoid code duplication and improve readability (A)</p> Signup and view all the answers

Flashcards

What is '.py'?

The standard file extension for Python source code files.

Valid Python variable name

A valid variable name starts with a letter or underscore, followed by letters, numbers, or underscores (varName).

print(2 + 3 * 2) Output?

Multiplication happens before addition, so 3 * 2 = 6, then 2 + 6 = 8.

How to start a Python comment?

The # symbol indicates the start of a comment; the interpreter ignores comment lines.

Signup and view all the flashcards

Function for user input

The input() function allows a program to receive text input from the user.

Signup and view all the flashcards

What does len("Hello") return?

The len() function counts the number of characters in a string, including spaces and special characters. 'Hello' has 5 characters.

Signup and view all the flashcards

Output of print(10 // 3)

The '//' operator performs integer division, it returns the whole number of times one number divides into another. 10 divided by 3 is 3.333, the '//' truncates to 3.

Signup and view all the flashcards

Convert string to integer

The int() function attempts to convert its argument to a whole number.

Signup and view all the flashcards

Keyword to define a function

The 'def' keyword is used when creating a function in Python.

Signup and view all the flashcards

Start a 'for' loop

The 'for' loop iterates through a sequence (e.g., a range of numbers).

Signup and view all the flashcards

print(5 / 2) returns 2.5?

Python 3 uses float division by default, so 5 / 2 results in 2.5 (a float).

Signup and view all the flashcards

Modifying a tuple?

Tuples are immutable, meaning once created, their elements cannot be modified.

Signup and view all the flashcards

Modifying a tuple (Part 2)

Like any object, a tuple CAN be reassigned with a new tuple with all new values.

Signup and view all the flashcards

Why use 'self'?

In class methods, 'self' refers to the instance of the class, allowing access to instance attributes.

Signup and view all the flashcards

Use list comprehension?

List comprehensions offer a concise way to create lists, improving readability and often performance.

Signup and view all the flashcards

What will print(2**3) output?

The ** operator performs exponentiation. Thus 2**3 calculates 2 to the power of 3 (2 cubed) which equals 8.

Signup and view all the flashcards

my_dict.get("key", "default")?

The get() method retrieves the value for a specified key. If the key is missing, it returns a default value (here, "default").

Signup and view all the flashcards

Fast data lookups?

Dictionaries use keys to store values, allowing for very fast lookups; lists require iterating through for searches.

Signup and view all the flashcards

Store only unique values?

Sets only store unique elements. Adding a duplicate has no effect.

Signup and view all the flashcards

int("abc")?

The int() function tries to convert a string to an integer, but only works if the string represents a valid integer. 'abc' cannot be converted to an integer.

Signup and view all the flashcards

try-except handles what errors?

Try-except blocks catch runtime errors, allowing the program to continue. Syntax, logical errors are not handled by try-except blocks.

Signup and view all the flashcards

Uncalled function impact?

A defined function that is never called consumes memory but has no other effect on the program.

Signup and view all the flashcards

Improve Python performance?

Optimizing algorithms and using built-in functions improve performance; more variables/comments/loops generally decrease performance.

Signup and view all the flashcards

Set or list?

Sets guarantee uniqueness and allow efficient membership tests. Lists do not have this property.

Signup and view all the flashcards

Handling exceptions?

Use a try-except block to catch and handle exceptions, preventing program crashes.

Signup and view all the flashcards

Version control important?

Version control systems track changes and enable collaboration.

Signup and view all the flashcards

Create list of squares?

List comprehension: concise way to create lists, often improving readability and performance.

Signup and view all the flashcards

Virtual environment purpose?

Python virtual environments isolate project dependencies, preventing conflicts between different versions of packages.

Signup and view all the flashcards

Data type unmodified?

Tuples are immutable (cannot be modified after creation. Lists, dictionaries, and sets are mutable.

Signup and view all the flashcards

How to check key exists?

The syntax 'key in my_dict' is used to check whether ‘key’ exists in the keys of the dictionary my_dict. The function my_dict.has_key(x) is used in Python 2 but not in Python 3.

Signup and view all the flashcards

Why functions beneficial?

Functions prevent code dupliation and improve readability, reducing redundancy and making code easier to understand/maintain.

Signup and view all the flashcards

Accessing non-existent key?

Square brackets [] throw a 'KeyError' if the key cannot be found.

Signup and view all the flashcards

How to copy a list

List.copy(), list[:] both create a shallow copy of the original list in Python.

Signup and view all the flashcards

What is the purpose of the 'with' statement in Python?

In Python, try to use the ‘with‘ statement to handle other program resources like file streams.

Signup and view all the flashcards

If you want to sort a list in descending order, which method would you use?

The first way is to implement list.sort(reverse=True), and the second way of implementation is sorted(list, reverse=True).

Signup and view all the flashcards

How can you remove duplicates from a list while preserving order?

The list comprehension with a condition is one of the methods to remove duplicates from a list while preserving its original order.

Signup and view all the flashcards

In Python, what does the term “immutable” refer to?

An immutable object is defined as an object that cannot be changed after it is created.

Signup and view all the flashcards

How can you check the data type of a variable in Python?

The function used in Python to check data type of a variable is the built-in type() function.

Signup and view all the flashcards

How can you create a function that accepts a variable number of arguments?

The best way to define a function so that it accepts a variable number of arguments is shown by def func(*args):. The ‘*args’ parameter enables a function to accept any number of positional arguments.

Signup and view all the flashcards

Why is it important to handle exceptions in your code?

Handling exceptions in your code is an excellent way to prevent the program from crashing and provide user feedback.

Signup and view all the flashcards

Study Notes

  • Python files use the .py extension.
  • varName is a valid way to name a variable in Python.
  • print(2 + 3 * 2) outputs 8, due to operator precedence (multiplication before addition).
  • In Python, # is used to start a comment.
  • input() is the function to get user input in Python.
  • len("Hello") returns 5, which is the number of characters in the string Hello.
  • print(10 // 3) outputs 3 because // is the floor division operator.
  • int() function converts a string into an integer.
  • def keyword is used to define a function in Python.
  • A loop in Python starts with for i in range(10):.
  • The open("data.txt", "r") function is the correct way to open a file named data.txt for reading.
  • print(type(5.0)) returns float as the type.
  • Lists are known to be mutable in Python.
  • Python 3 uses float division by default, and that is why print(5 / 2) returns 2.5.
  • Attempting to modify a tuple in Python will throw an error.
  • self in class methods accesses instance attributes.
  • List comprehension improves readability and performance.
  • print(2**3) outputs 8.
  • my_dict.get("key", "default") returns the value for key or default if the key is missing.
  • A dictionary is the appropriate data type for fast lookups.
  • A set would be most suitable for storing unique values in a collection.
  • int("abc") throws a ValueError.
  • try-except handles runtime errors.
  • Defining a function without calling it will consume memory without any effect.
  • Optimizing algorithms and using built-in functions can improve a Python program's performance when processing large datasets.
  • It is more efficient to use a set over a list when membership tests are performed.
  • try-except blocks handle exceptions.
  • The code [x**2 for x in range (4)] results in [0, 1, 4, 9] returned.
  • Version control is essential because it helps keep track of changes and collaborate with others.
  • To create a new list that contains the squares of numbers from 1 to 10, use: [x**2 for x in range(1, 11)].
  • The main reason to use a virtual environment in Python is to isolate project dependencies.
  • Use a tuple data type to ensure variables are not modified.
  • When determining whether a key exists in a dictionary, it is best to use key in my_dict.
  • In Python, the is operator checks for identity.
  • Using dict1.update(dict2) merges two dictionaries in Python 3.9+.
  • The output for the following code returns 2:
def f(x,l=[]):
    for i in range(x):
        l.append(i*i)
    print (l)
f(2)
f(3,[3,2,1])
f(3)
  • Functions avoid code duplication and improve readability.
  • Accessing a non-existent key in a dictionary using square brackets throws a KeyError.
  • list.copy() and list[:] are used to create a copy of a list.
  • The with statement manages resources like file streams.
  • list.sort(reverse=True) sorts a list in descending order.
  • The following code prints [0, 2, 4]:
def func(x):
    res = []
    for i in range(x):
        if i % 2 != 0:
            continue
        res.append(i)
    return res
print(func(5))
  • List comprehension removes duplicates from a list while preserving order.
  • The following code prints 6:
a = [1, 2, 3]
sum(a)
  • "Immutable" refers to objects that cannot be changed.
  • The correct method to check a data type of a variable is by usingisinstance(variable).
  • The following code will output "yth":
str = "Python"
print (str[2:5])
  • Use def func(*args): to create function that accepts a variable number of arguments.
  • The result of the [10, 2, 3] can be returned when running the following code:
numbers = [1, 2, 3]
def modify_list(numbers):
    numbers[0] = 10
    return numbers
print(modify_list(numbers))
  • Handling exceptions prevents the program from crashing and provides user feedback.
  • The code will output "Hello5":
word = "Hello"
number = 5
print(word + str(number))
  • for key, value in my_dict.items(): iterates over a dictionary's keys and values simultaneously.
  • The following code will output "abcabc":
def repeat_string(s):
    result = s * 2
    return result
print(repeat_string("abc"))
  • To convert a list to a string, use ", ".join(list).
  • The pass statement creates an empty function or class.

Studying That Suits You

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

Quiz Team

Related Documents

More Like This

Use Quizgecko on...
Browser
Browser