Career Principles - Python Part 1 Flashcards

1
Q

What are variables in Python?

A

Variables are used to store data.

Python automatically detects the data type.

They are case sensitive so Name vs name is different.

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

What is the F string?

A

F strings are a way to embed expressions inside string literals, using curly braces {}.

add “f” at the beginning of string and insert the different variables into the string using the curly brackets “{}”

For example:

name = “Alice”
age = 30
print(f”My name is {name} and I am {age} years old.”)

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

What is the code?

Say hello and ask user for their name?

A

print(“hello”) + input(“what is your name?”)

this will return “hello name”

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

What is the code?

Say hello and ask user for their name and add a smiley?

A

(print(“hello”) + input(“what is your name?”) + “ :)”)

this will return “hello name :)”

note, you need to add a space before the smiley or there will be no space in the output

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

How do you handle apostrophe’s in the code?

ie Greg’s dog

A

you can write text with quotations then use the apostrophe as normal. for example,

“what’s your name?”

OR

you wrap text in an apostrophe and then put a forward slash in front of the apostrophe. for example,

‘what's your name?’

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

Answer the following for the data structures (Lists, Tuples, Sets, and Dictionaries)?

 -What is the syntax?
 -Are they mutable?
 -Do they allow duplicates?
 -Are they ordered?
A
  1. Lists: the syntax is [ ], they are mutable, allow for duplicates, and ordered
  2. Tuples: the syntax is ( ), they are not mutable, allows for duplicates, and ordered
  3. Sets: the syntax is { }, they are mutable, do not allow for duplicates, and are not ordered
  4. Dictionaries: the syntax is { }, they are mutable, do not allow for duplicates, and are not ordered
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what is a list?

A

A list in Python is a built-in data structure that allows you to store an ordered collection of items (elements), which can be of any data type, including other lists.

for example:

List_A = [“Mike”, 12.25, 99, [1,2,3]]

Note, the order is 0 for Mike, 1 for 12.25, 2 for 99, etc

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

What is the code if you want to return 12.25 in List_A = [“Mike”, 12.25, 99, [1,2,3]]

A

print(List_A [1] )

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

What if you want to return the list within

list_person = [“Mike”, “Smith”, 25.5, [“green”, “blue” , “orange”]]

A

print(list_person[3])

this will return [‘green’, ‘blue’ , ‘orange’]

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

What if you want to return a blue from the list within

list_person = [“Mike”, “Smith”, 25.5, [“green”, “blue” , “orange”]]

A

print(list_person[3][1])

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

How would you add “male” to the following list:

list_person = [“Mike”, “Smith”, 25.5, [“green”, “blue” , “orange”]]

A

list_person.append(‘male’)

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

How would you delete “male” to the following list:

list_person = [“Mike”, “Smith”, 25.5, [“green”, “blue” , “orange”], ‘male’]

A

list_person.pop(4)

or

list_person.remove(4)

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

How would you change “Mike” to “Michael” in the following list:

list_person = [“Mike”, “Smith”, 25.5, [“green”, “blue” , “orange”], ‘male’]

A

list_A[0] = “Michael”

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

How to combine the following lists:

list_1 = [1 , 2 , 3]
list_2 = [4, 5, 6]

A

print (list_1 + list_2)

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

What are Tuples?

A

the are similar to lists but are not mutable (changeable)

they use parenthesis ( ) instead of brackets [ ]

they are used for important data that you do not want to change

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

What are Sets?

A

a set is a collection of unique items

it will not keep duplicates (ie they get removed)

the order does not matter. in other words, you cannot return results based on an index number like (print(list_a)[1])

they are mutable so they can be changed

they use the curly brackets { }

17
Q

How to add 3 to the following set:

set_1 = {‘test’, 1, 2, 1.5}

A

set_1.add(3)

you use the function .add instead of .app

18
Q

How to remove 3 from the following set:

set_1 = {‘test’, 1, 2, 3, 1.5}

A

set_1.discard(3)

you use the function .remove instead of .popp

19
Q

How do you combine the following sets:

test_1 = {1, 2, 3, 4, 5}

test_2 = {3, 4, 5, 6, 7}

A

use the bar ( | )

print ( test_1 | test_2)

{1, 2, 3, 4, 5, 6, 7}

Note, the duplicates were removed

20
Q

How do you see the union between the following sets:

test_1 = {1, 2, 3, 4, 5}

test_2 = {3, 4, 5, 6, 7}

A

use the & function

print ( test_1 & test_2)

{3, 4, 5}

21
Q

How do you see what isn’t overlapping between the following sets:

test_1 = {1, 2, 3, 4, 5}

test_2 = {3, 4, 5, 6, 7}

A

use the carrot function

print(test_1 ^ test_2)

print {1, 2, 6, 7}

22
Q

What are dictionaries?

A

similar to real life dictionaries, it has a key (word) and value (definition). the keys are linked to specific values

they are mutable (ie changeable)

they do not have order

you the curly brackets { }

23
Q

Create a dictionary for the following:

Dictionary Name: Customer_1
Name: Michael
Item: Jeans
Spend: 50

A

Customer_1 = {“Name” : “Michael”, “Item” : “Jeans”, “Spend” : 50}

24
Q

How do you return only customer_1 values?

Customer_1 = {“Name” : “Michael”, “Item” : “Jeans”, “Spend” : 50}

A

customer_1.values()

this will return: dict_values([‘Michael’, ‘Jean’, 50])

25
Q

how to return the value of Item?

Customer_1 = {“Name” : “Michael”, “Item” : “Jeans”, “Spend” : 50}

A

Customer_1[“Item”]

This will return ‘Jeans’

26
Q

What if you want to add Age : 25 to the dictionary:

Customer_1 = {“Name” : “Michael”, “Item” : “Jeans”, “Spend” : 50}

A

customer_1[“Age”] = 25

This will create: Customer_1 = {“Name” : “Michael”, “Item” : “Jeans”, “Spend” : 50, “Age” : 25}

27
Q

How to delete Age : 25 to the following dictionary:

Customer_1 = {“Name” : “Michael”, “Item” : “Jeans”, “Spend” : 50, “Age” : 25}

A

del customer_1[“Age”]

this will return: Customer_1 = {“Name” : “Michael”, “Item” : “Jeans”, “Spend” : 50}