Contact: aviboots(AT)netvision.net.il
39,939 questions
51,876 answers
573 users
class Worker: def show(self, name=None): if name is not None: print("the name is: " + name) else: print("name is None") o = Worker() o.show() o.show("Tom") ''' run: name is None the name is: Tom '''