Wall Street Real Estate

Report a typo

We have the model House with the fields street, house_number, apartments:

class House(models.Model):
    apartments = models.IntegerField()
    house_number = models.IntegerField()
    street = models.CharField(max_length=64)

Update the available apartments on Wall st., 45. The new number of the available apartments is 35.

Write a program in Python 3
wall_street_apartments = ...
___

Create a free account to access the full topic