# Basketball Player Example # Add instance variables in this test file. from basketballplayer import BasketballPlayer b = BasketballPlayer( ) b.name = "Michael Jordon" b.jersey_number = 23 b.position = "Shooting Guard" b.height = 78 b.weight = 216 b.is_rookie = True # Instance variable values for object b. print("name: ", b.name) print("jersey_number: ", b.jersey_number) print("position: ", b.position) print("height: ", b.height) print("weight: ", b.weight) print("is_rookie: ", b.is_rookie)