Skip to content

Instantly share code, notes, and snippets.

@renzon
Created April 22, 2019 14:40
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 renzon/6d97dfd0a1a1d59acd32c6d54ec95940 to your computer and use it in GitHub Desktop.
Save renzon/6d97dfd0a1a1d59acd32c6d54ec95940 to your computer and use it in GitHub Desktop.
TV
"""
>>> tv = Televisao(1,0)
>>> tv.canal
1
>>> tv.volume
0
>>> tv.mudar_canal(5)
5
>>> tv.mudar_canal(11)
'Canal fora do range 1 a 10'
>>> tv.canal
5
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment