# 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 ProYear of release: 2021Features: Apple M1 Chip, 16-core Neural Engine, 8-core GPU=========================Model Name: Razer Blade Pro 17Year of release: 2020Features: Intel Core i7-10875H CPU, Nvidia RTX 3080 16GB GPU=========================Model Name: HP SPECTRE X360 14Year of release: 2021Features: 512GB PCIe NVMe SSD, Intel Core i7-1165G7 CPU=========================No. of Laptop = 3
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here