1 def func(a= True): 2 if a: 3 print(‘a‘) 4 else: 5 print(‘b‘)
func(True)
Python
原文:https://www.cnblogs.com/q1231/p/12635465.html