Guest User

Untitled

a guest
Sep 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. DEFAULT_NAME = File.open("default_name.txt").read()
  2.  
  3. class Person:
  4. def __init__(self, name=None):
  5. self.name = name or DEFAULT_NAME
Add Comment
Please, Sign In to add comment