5 def print_plan( self): print('Mins:', self.num_mins, end=' ') print( 'Messages:', self.num_messages) 6 7 8 9 10 11 my_plan = PhonePlan(int(input()), int(input())) 12 dads_plan = PhonePlan() 13...


Write a constructor with parameters self, num_mins and num_messages. num_mins and num_messages should have a default value of 0.


Sample output with one plan created with input: 200 300, one plan created with no input, and one plan created with input: 500




My plan... Mins: 200 Messages: 300
Dad's plan... Mins: 0 Messages: 0
Mom's plan... Mins: 500 Messages: 0



python


5<br>def print_plan( self):<br>print('Mins:', self.num_mins, end=' ')<br>print( 'Messages:', self.num_messages)<br>6<br>7<br>8<br>9<br>10<br>11 my_plan = PhonePlan(int(input()), int(input()))<br>12 dads_plan = PhonePlan()<br>13 Moms_plan = PhonePlan(int(input()))<br>14<br>15 print('My plan...', end='')<br>16 my_plan.print_plan()<br>17<br>18 print('Dad\'s plan...', end=' ')<br>19 dads_plan.print_plan()<br>20<br>21 print('Mom\'s plan...', end=<br>22 moms_plan.print_plan()<br>

Extracted text: 5 def print_plan( self): print('Mins:', self.num_mins, end=' ') print( 'Messages:', self.num_messages) 6 7 8 9 10 11 my_plan = PhonePlan(int(input()), int(input())) 12 dads_plan = PhonePlan() 13 Moms_plan = PhonePlan(int(input())) 14 15 print('My plan...', end='') 16 my_plan.print_plan() 17 18 print('Dad\'s plan...', end=' ') 19 dads_plan.print_plan() 20 21 print('Mom\'s plan...', end= 22 moms_plan.print_plan()
1 class PhonePlan:<br># FIXME add constructor<br>3<br>4<br>'' Your solution goes here '''<br>5<br>def print_plan( self):<br>print('Mins:', self.num_mins, end=' ')<br>print('Messages:', self.num_messages)<br>6.<br>7<br>8<br>9<br>10<br>11 my_plan = PhonePlan(int(input()), int(input()))<br>12 dads_plan = PhonePlan()<br>13 moms_plan<br>PhonePlan(int(input()))<br>14<br>15 print('My plan...', end=' ')<br>16 my_plan.print_plan()<br>17<br>18 print('Dad\'s plan...', end=' ')<br>

Extracted text: 1 class PhonePlan: # FIXME add constructor 3 4 '' Your solution goes here ''' 5 def print_plan( self): print('Mins:', self.num_mins, end=' ') print('Messages:', self.num_messages) 6. 7 8 9 10 11 my_plan = PhonePlan(int(input()), int(input())) 12 dads_plan = PhonePlan() 13 moms_plan PhonePlan(int(input())) 14 15 print('My plan...', end=' ') 16 my_plan.print_plan() 17 18 print('Dad\'s plan...', end=' ')

Jun 10, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here