Python Flashcards

Learn all about the python programming language

1
Q

Where is the python interpreter usually installed?

A

The Python interpreter is usually installed as /usr/local/bin/python3.4 file path.

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

How do you set the python interpreter path to C:\python3.4

A

set path=%path%;C:\python3.4

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

When inside the python terminal, how do you quit?

A

quit()

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

How do you start a comment in python?

A

#

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

What are the symbols of add, subtract, multiply, divide and remainder in python?

A

+, -, *, /, and %

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

Just as in BODMAS, python respects parenthesis.
which will be treated first: (50 - 5*6) / 4 ?

A

The Multiplication in the bracket, followed by the subtraction and the total will be divided by 4

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

5 ** 2 ?

A

25

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

> > > width = 20
height = 5 * 2
width * height

A

200

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

How do you escape single quotes in ‘doesn’t’ ? to give “doesn’t”

A

‘doesn't’

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

s = ‘First line.\nSecond line.’ without print(), produces what?

A

‘First line.\nSecond line.’

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

s = ‘First line.\nSecond line.’ with print(s), produces what?

A

First line.
Second line.

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

What does r in print(r’C:\some\name’) does?

A

If you don’t want characters prefaced by \ to be interpreted as special characters, you can use raw strings by adding an r before the first quote
output: C:\some\name

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

String Literals allow multi-line comments, how do you write them?

A

”””\
Usage: thingy [OPTIONS]
-h Display this usage message
-H hostname Hostname to connect to
“””

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

3 * ‘un’ + ‘ium’ produces?

A

‘unununium’
# 3 times ‘un’, followed by ‘ium’

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

‘Py’ ‘thon’ returns what?

A

‘Python’ because of the string literal. A variable and a string literal would not work

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

A variable text with a string literal in parenthesis:
text = (‘Put several strings within parentheses ‘
‘to have them joined together.’), returns what?

A

‘Put several strings within parentheses to have them joined together.’

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

word = ‘Python’
word[0] # character in position 0
Returns what?

A

‘P’

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

word = ‘Python’
word[5] # character in position 5
Returns what?

A

‘n’

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

word = ‘Python’
word[-1] # last character
Returns what?

20
Q

word = ‘Python’
word[-2] # second-last character
Returns what?

21
Q

word = ‘Python’
word[-6]
Returns what?

22
Q

word = ‘Python’
word[0:2] # characters from position 0 (included) to 2 (excluded)
Returns what?

23
Q

word = ‘Python’
word[2:5] # characters from position 2 (included) to 5 (excluded)
Returns what?

24
Q

s[:i] + s[i:] = s
word = ‘Python’
word[:2] + word[2:]
Returns what?

A

‘Python’

25
Q

word = ‘Python’
word[:4] + word[4:]
Returns what?

A

‘Python’

26
Q

One way to remember how slices work is to think of the indices as pointing between characters, with the left edge of the first character numbered 0. Then the right edge of the last character of a string of n characters has index n. Draw a diagram using ‘Python’ sliced

A

+—+—+—+—+—+—+
| P | y | t | h | o | n |
+—+—+—+—+—+—+
0 1 2 3 4 5 6
-6 -5 -4 -3 -2 -1

27
Q

‘J’ + word[1:] changes what letter in ‘Python’ ?

A

‘Jython’

28
Q

word[0] = ‘J’ What does this give you?

A

TypeError: ‘str’ object does not support item assignment

29
Q

word[2:] = ‘py’ What does this give you?

A

TypeError: ‘str’ object does not support item assignment

30
Q

word[:2] + ‘py’ changes what letter in ‘Python’ ?

A

‘Pypy’

31
Q

s = ‘supercalifragilisticexpialidocious’
Output: 34
How do we get this?

32
Q

> > > squares = [1, 4, 9, 16, 25]
squares
Output?

A

[1, 4, 9, 16, 25]

33
Q

> > > squares = [1, 4, 9, 16, 25]
squares[0] # indexing returns the item
Output?

34
Q

> > > squares = [1, 4, 9, 16, 25]
squares[-1]
Output?

35
Q

> > > squares = [1, 4, 9, 16, 25]
squares[-3]
Output?

A

[9, 16, 25]

36
Q

> > > squares = [1, 4, 9, 16, 25]
squares[:]
Output?

A

[1, 4, 9, 16, 25]

37
Q

> > > squares = [1, 4, 9, 16, 25]
squares + [36, 49, 64, 81, 100]
Output?

A

[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]

38
Q

> > > cubes = [1, 8, 27, 65, 125] # something’s wrong here
4 ** 3 # the cube of 4 is 64, not 65!
Correct this!

A

cubes[3] = 64 # replace the wrong value
»> cubes
[1, 8, 27, 64, 125]

39
Q

> > > cubes = [1, 8, 27, 65, 125, , ]
Missing Values, what happened?
Output = [1, 8, 27, 64, 125, 216, 343]

A

> > > cubes.append(216) # add the cube of 6
cubes.append(7 ** 3) # and the cube of 7
cubes
[1, 8, 27, 64, 125, 216, 343]

40
Q

> > > letters = [‘a’, ‘b’, ‘c’, ‘d’, ‘e’, ‘f’, ‘g’]
letters
[‘a’, ‘b’, ‘c’, ‘d’, ‘e’, ‘f’, ‘g’]
# replace some values
letters[2:5] = [‘C’, ‘D’, ‘E’]
letters
Output?

A

Output = [‘a’, ‘b’, ‘C’, ‘D’, ‘E’, ‘f’, ‘g’]

41
Q

[‘a’, ‘b’, ‘C’, ‘D’, ‘E’, ‘f’, ‘g’]
»> # now remove them
»> letters[2:5] = []
»> letters
Output?

A

Output = [‘a’, ‘b’, ‘f’, ‘g’]

42
Q

> > > letters = [‘a’, ‘b’, ‘c’, ‘d’, ‘e’, ‘f’, ‘g’]
letters[:] = []
letters
output?

43
Q

> > > letters = [‘a’, ‘b’, ‘c’, ‘d’]
len(letters)

44
Q

> > > a = [‘a’, ‘b’, ‘c’]
n = [1, 2, 3]
x = [a, n]
x
What is x?

A

x = [[‘a’, ‘b’, ‘c’], [1, 2, 3]]

45
Q

> > > a = [‘a’, ‘b’, ‘c’]
n = [1, 2, 3]
x = [a, n]
x[0]
Output?

A

[‘a’, ‘b’, ‘c’]