Contact: aviboots(AT)netvision.net.il
39,940 questions
51,877 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 '''