# Write your code here # Do not change the following lines of code. print("No. of Laptop =", Laptop.count) l1 = Laptop('Macbook Pro', 2021) l1.add_Features('Apple M1 Chip' , '16-core Neural Engine',...


# Write your code here
# Do not change the following lines of code.


print("No. of Laptop =", Laptop.count)
l1 = Laptop('Macbook Pro', 2021)
l1.add_Features('Apple M1 Chip' , '16-core Neural Engine', '8-core GPU')
l2 = Laptop('Razer Blade Pro 17', 2020)
l2.add_Features('Intel Core i7-10875H CPU' , 'Nvidia RTX 3080 16GB GPU')
l3 = Laptop('HP SPECTRE X360 14', 2021)
l3.add_Features('512GB PCIe NVMe SSD' ,  'Intel Core i7-1165G7 CPU')
print("=========================")
l1.printLaptopDetail()
print("=========================")
l2.printLaptopDetail()
print("=========================")
l3.printLaptopDetail()
print("=========================")
print('No. of Laptop =',Laptop.count)


Output:
No. of Laptop = 0
=========================
Model Name: Macbook Pro
Year of release: 2021
Features: Apple M1 Chip, 16-core Neural Engine, 8-core GPU
=========================
Model Name: Razer Blade Pro 17
Year of release: 2020
Features: Intel Core i7-10875H CPU, Nvidia RTX 3080 16GB GPU
=========================
Model Name: HP SPECTRE X360 14
Year of release: 2021
Features: 512GB PCIe NVMe SSD, Intel Core i7-1165G7 CPU
=========================
No. of Laptop = 3




Jun 06, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here