Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. import sys
  2. sys.path.append('G:\\Lessons\\Python\\Lev\\our_libs')
  3. from fraction import Fraction
  4. import car
  5.  
  6. ff = Fraction(10,5)
  7. ff += Fraction(7,23)
  8. ff.print()
  9.  
  10. a = car.Car("Green")
  11.  
  12. print(a)
  13. print(sys.path)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement