Advertisement
rodolpheg

Untitled

Sep 28th, 2020
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. class AnimauxAmerique:
  2. continent = "Amérique"
  3. def __init__(self, esp):
  4. self.espece = esp
  5.  
  6. animal_01 = AnimauxAmerique("vache")
  7. print(animal_01.continent, animal_01.espece)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement