Guest User

Untitled

a guest
Nov 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. Case1
  2. P
  3. 1.00E+02
  4. 5.
  5.  
  6. title = "Case1"
  7. area = "P"
  8. distance = 100
  9. factor = 5
  10.  
  11. f = open('C:\input.txt',"r")
  12. title = f.readline().strip()
  13. area = f.readline().strip()
  14. distance = f.readline().strip()
  15. factor = f.readline().strip().strip(".")
  16. f.close
  17. print(title)
  18. print(area)
  19. print(distance)
  20. print(factor)
  21.  
  22. Case1
  23. P
  24. 1.00E+02
  25. 5
Add Comment
Please, Sign In to add comment