Skip to content

Instantly share code, notes, and snippets.

@marcoscastro
Created September 12, 2017 16:32
Show Gist options
  • Save marcoscastro/860ae96ab2d0e4a2e639b95420ed8fdf to your computer and use it in GitHub Desktop.
Save marcoscastro/860ae96ab2d0e4a2e639b95420ed8fdf to your computer and use it in GitHub Desktop.
Curso Python 300 - Aula 36
class Televisao:
def __init__(self):
self.ligada = False
self.canal = 4
tv = Televisao()
print(tv.ligada)
print(tv.canal)
tv.canal = 10
print(tv.canal)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment