Basics Flashcards

1
Q

What symbol is used for single-line comments in Python?

A

#

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

How are code blocks defined in Python (e.g., if statements)?

A

Using indentation (spaces/tabs).

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

What is dynamic typing?

A

Variables can change data type after assignment (e.g., x = 5x = \"text\").

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

What are invalid variable names?

A

Names starting with numbers or symbols (e.g., 2var, my-var).

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

What is the difference between 5 and 5.0?

A

5 is an int (integer); 5.0 is a float (decimal).

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

How do you write a multi-line string?

A

Use triple quotes: '''Line 1\nLine 2''' or \"\"\"Line 1\nLine 2\"\"\".

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

What is the output of \"hello\".upper()?

A

\"HELLO\".

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

What is a falsy value in Python?

A

0, \"\", None, [], {}, (), False.

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

How do you reverse a list in-place?

A

Use .reverse(): my_list.reverse().

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

What method adds an item to the end of a list?

A

.append(item) (e.g., my_list.append(5)).

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

What is the difference between a list and a tuple?

A

Lists are mutable; tuples are immutable.

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

How do you create a single-element tuple?

A

Add a trailing comma: my_tuple = (\"item\",).

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

What method returns key-value pairs in a dictionary?

A

.items() (e.g., my_dict.items()(key, value) pairs).

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

How do you safely get a value from a dictionary?

A

Use .get(key) (returns None instead of KeyError).

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

What is a set?

A

An unordered collection of unique elements (e.g., {1, 2, 3}).

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

How do you add multiple elements to a set?

A

Use .update(): my_set.update([4, 5]).

17
Q

What does int(\"10\") return?

A

The integer 10.

18
Q

How do you convert a list to a tuple?

A

Use tuple(): tuple([1, 2, 3])(1, 2, 3).

19
Q

What is the output of list(\"hi\")?

A

['h', 'i'].

20
Q

What is the result of bool(\"\")?

A

False (empty strings are falsy).

21
Q

How do you split a string into a list?

A

“Use .split(): `"a