Skip to content

Instantly share code, notes, and snippets.

@gergob
Created November 21, 2014 21:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gergob/83af8579b377e1cf41ba to your computer and use it in GitHub Desktop.
Save gergob/83af8579b377e1cf41ba to your computer and use it in GitHub Desktop.
using Gadget python class
>>> from Gadget import Gadget
>>> my_iphone = Gadget(240,'iOS',1980,4)
>>> my_iphone.weight
240
>>> my_iphone.weight = 255
>>> my_iphone.weight
255
>>>
>>>
>>> my_iphone.operating_system
'iOS'
>>> my_iphone.operating_system = 'iOS 8.1'
>>> my_iphone.operating_system
'iOS 8.1'
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment