davegimo

oggetti

Apr 22nd, 2022
1,187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. class persona:
  2.     def __init__(self, n, c, e): #costruttore
  3.         self.nome = n
  4.         self.cognome = c
  5.         self.eta = e
  6.  
  7.  
  8.  
  9.  
  10. ###main
  11.  
  12.        
  13. dav = persona("davide","gimondo", 26)
  14.  
  15.  
  16. print(dav.eta)
  17.  
Advertisement
Add Comment
Please, Sign In to add comment