Python Modules Flashcards

1
Q

What is a Python module?

A

A Python module is a Python file that contains code, such as functions, classes, or variables, which can be used in another Python file.

The file extension of a Python module is .py.

Examples of common modules: math, random, statistics.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you import a module in Python?

A
  1. import statement: Imports the entire module.

Example: import math

  1. from statement: Imports specific functions or attributes from a module.

Example: from math import sqrt

  1. import *: Imports all objects from a module.

Example: from math import *

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Module Aliasing

A

Module aliasing allows you to create a nickname for a module using the as keyword.

import random as r
r.randint(1, 10) # Use ‘r’ as an alias for ‘random’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What does math.pi return?

A

math.pi returns the value of the mathematical constant π (pi).

import math
math.pi # Output: 3.141592653589793

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does math.e return?

A

import statistics as s
s.mode([1, 4, 5, 7, 4]) # Output: 4

import math
math.e # Output: 2.718281828459045

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does math.sqrt() do?

A

math.sqrt() returns the square root of a number.

Syntax: math.sqrt(number)

import math
math.sqrt(25) # Output: 5.0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does math.ceil() do?

A

math.ceil() returns the smallest integer greater than or equal to a given number.

Syntax: math.ceil(x)

import math
math.ceil(4.5) # Output: 5

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does math.floor() do?

A

math.floor() returns the largest integer less than or equal to a given number.

Syntax: math.floor(x)

import math
math.floor(4.5) # Output: 4

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What does math.pow() do?

A

math.pow() returns the value of x raised to the power of y.

Syntax: math.pow(x, y)

import math
math.pow(3, 2) # Output: 9.0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What does math.fabs() do?

A

math.fabs() returns the absolute value of a number (always positive).

Syntax: math.fabs(x)

import math
math.fabs(-10) # Output: 10.0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What does math.sin() do?

A

math.sin() returns the sine of an angle (in radians).

Syntax: math.sin(x)

import math
math.sin(0.524) # Output: 0.5003474302699141 (approx sine o

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What does math.cos() do?

A

math.cos() returns the cosine of an angle (in radians).
Syntax: math.cos(x)

import math
math.cos(0.524) # Output: 0.8658247218821448 (approx cosine

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What does math.tan() do?

A

math.tan() returns the tangent of an angle (in radians).

Syntax: math.tan(x)

import math
math.tan(0.524) # Output: 0.5778853590392409 (approx tangen

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What does random.random() do?

A

random.random() generates a random float between 0.0 and 1.0 (inclusive of 0.0, exclusive of 1.0).

Syntax: random.random()

import random as r
r.random() # Output: 0.13939737870230484 (random flo

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What does random.randint() do?

A

random.randint() generates a random integer between two specified numbers (inclusive).

Syntax: random.randint(a, b)

import random as r
r.randint(4, 9) # Output: 5 (random integer between

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What does random.randrange() do?

A

random.randrange() generates a random integer between a start and stop value (start inclusive, stop exclusive).

Syntax: random.randrange(start, stop, step)

import random as r
r.randrange(4, 9) # Output: 5 (random integer betwee

17
Q

What does statistics.mean() do?

A

statistics.mean() calculates the arithmetic mean (average) of a dataset.

Syntax: statistics.mean(data)

import statistics as s
s.mean([1, 4, 5, 7, 4]) # Output: 4.2

18
Q

What does statistics.mode() do?

A

statistics.mode() calculates the mode (most frequent value) of a dataset.

Syntax: statistics.mode(data)

import statistics as s
s.mode([1, 4, 5, 7, 4]) # Output: 4

19
Q

What does statistics.median() do?

A

statistics.median() calculates the median (middle value) of a dataset.

Syntax: statistics.median(data)

import statistics as s
s.median([1, 4, 5, 7, 4]) # Output: 4