Python - Classes and Object Lifecycle
What will be the output of this code?
class Bird:
sound = "tweet"
b1 = Bird()
b2 = Bird()
Bird.sound = "chirp"
print(b1.sound, b2.sound)