aramideoluwatosin

week

Apr 16th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #!/usr/bin/env python
  2.  
  3. from __future__ import division
  4. a=7/3
  5. b=round(a, 4)
  6. c=9
  7. d=10
  8. c+=1
  9. d-=1
  10. print (a)
  11. print(b)
  12. print(c)
  13. print(d)
  14.  
  15. new_file=open("file.txt")
  16. # default mode is a read
  17. open_new_file=new_file.read()
  18. print (open_new_file)
Advertisement
Add Comment
Please, Sign In to add comment