class User:def __init__(self, full_name, birthday):self.name = full_nameself.birthday = birthday # yyyymmdd# Extract first and last namesname_pieces = full_name.split(" ")self.first_name = name_pieces[0]self.last_name = name_pieces[-1]user = User("Dave Bowman", "19710315")print(user.name)print(user.first_name)print(user.last_name)print(user.birthday)
Saturday, June 13, 2020
Subscribe to:
Post Comments (Atom)

0 comments