Advertisement
maxim_shlyahtin

Task_3.6

Oct 17th, 2020
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #main.py
  2. import zoo
  3. zoo.hours()
  4.  
  5. import zoo as menagerie
  6. menagerie.hours()
  7.  
  8. from zoo import hours
  9. hours()
  10.  
  11. from zoo import hours as info
  12. info()
  13.  
  14. #zoo.py
  15. def hours():
  16. print('Open 9-5 daily')
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement