Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 29 additions & 16 deletions lab-oop_in_python.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,27 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 15,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"160 10000\n"
]
}
],
"source": [
"# Your code here\n",
"class Vehicle:\n",
" # Hint: Define __init__ method with parameters for max_speed and mileage\n",
" pass\n",
" def __init__(self, max_speed,mileage):\n",
" self.max_speed = max_speed\n",
" self.mileage = mileage\n",
"\n",
"# Example instantiation\n",
"modelX = Vehicle() # Create an instance of Vehicle\n",
"modelX = Vehicle('160','10000') # Create an instance of Vehicle\n",
"\n",
"# Print attributes\n",
"print(modelX.max_speed, modelX.mileage) # Expected output: (value of max_speed, value of mileage)"
Expand All @@ -56,7 +66,7 @@
},
{
"cell_type": "code",
"execution_count": 2,
"execution_count": 18,
"metadata": {},
"outputs": [
{
Expand All @@ -70,7 +80,8 @@
"source": [
"# Your code here\n",
"class Vehicle:\n",
" pass\n",
" def __init__(self):\n",
" pass\n",
"\n",
"# Example instantiation\n",
"my_vehicle = Vehicle()\n",
Expand All @@ -87,7 +98,7 @@
},
{
"cell_type": "code",
"execution_count": 3,
"execution_count": 20,
"metadata": {},
"outputs": [
{
Expand All @@ -101,6 +112,8 @@
"source": [
"# Your code here\n",
"class Bus(Vehicle):\n",
" def __init__(self):\n",
" super().__init__()\n",
" pass\n",
"\n",
"# Example instantiation\n",
Expand All @@ -118,14 +131,14 @@
},
{
"cell_type": "code",
"execution_count": 4,
"execution_count": 25,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Base fare\n"
"Base fare with extra charge\n"
]
}
],
Expand All @@ -136,8 +149,8 @@
" return \"Base fare\"\n",
"\n",
"class Bus(Vehicle):\n",
" # Hint: Override fare method to include extra charges\n",
" pass\n",
" def fare(self):\n",
" return \"Base fare with extra charge\"\n",
"\n",
"school_bus = Bus()\n",
"print(school_bus.fare()) # Expected output: \"Base fare with extra charge\""
Expand All @@ -153,7 +166,7 @@
},
{
"cell_type": "code",
"execution_count": 5,
"execution_count": 26,
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -188,7 +201,7 @@
},
{
"cell_type": "code",
"execution_count": 6,
"execution_count": 27,
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -228,7 +241,7 @@
},
{
"cell_type": "code",
"execution_count": 7,
"execution_count": 28,
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -287,7 +300,7 @@
],
"metadata": {
"kernelspec": {
"display_name": ".venv",
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
Expand All @@ -301,7 +314,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.0"
"version": "3.9.6"
}
},
"nbformat": 4,
Expand Down