September 2021
Beginner to intermediate
256 pages
6h 48m
English
The answers to the questions at the end of each chapter are listed here.
1. Jupyter notebooks.
2. Text and code.
3. Use the Mount Drive button in the Files section of the left navigation.
4. Python in Google Colab.
1. int
2. They will execute as normal.
3. raise LastParamError
4. print("Hello")
5. 2**3
1. 'a' in my_list
2. my_string.count('b')
3. my_list.append('a')
4. Yes
5. range(3, 14)
1. dict(name='Smuah', height=62)
Or
{'name':'Smuah', 'height':62}
Or
dict([['name','Smuah'],['height',62]])
2. student['gpa'] = 4.0
3. data.get('settings')
4. A mutable object has data that can be changed; an ...