Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. __author__ = 'jpastor'
  2.  
  3.  
  4. import sys
  5. class Drones:
  6.  
  7.  
  8.     def __init__(self, filename):
  9.  
  10.         f = open(filename)
  11.         self.rows, self.columns, self.n_drones, self.turns, self.max_w = map(int, f.readline().split())
  12.         self.n_products
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement