Practice Test Geeks home

Python Object-Oriented Programming Basics 5

What is the output of the following?
```python

class A:

x = 5

a = A()

a.x = 10

print(A.x)

```

Select your answer