Advertisement
LinuxAIO

cliente.py (Chapter 10)

Sep 16th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. class Cliente:
  2.     def __init__(self, nombre, telefono):
  3.         self.nombre = nombre
  4.         self.telefono = telefono
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement