โ† Pre-Professional

Level Exam: Pre-Professional

Pass score: 70%

1. What is self in a class method?

2. What does __init__ do?

3. CSV files are read with the ___ module

4. Output?

class Cat:
    def meow(self):
        print('Meow!')
c = Cat()
c.meow()

5. OOP stands for...