cs107-lecture-examples

Example codes used during Harvard CS107 lectures
git clone https://git.0xfab.ch/cs107-lecture-examples.git
Log | Files | Refs | README | LICENSE

module_2.py (119B)


      1 from ..subpkg_2 import module_3 as mod3
      2 
      3 
      4 def bar():
      5     mod3.baz()
      6     print("cs107_package.subpkg_1.module_2.bar()")