Re: Question regarding the __kwdefaults__ output being None

2019-04-19 Thread Arup Rakshit
Hi Peter, Thanks for explaining it. Beautiful. Thanks, Arup Rakshit a...@zeit.io > On 19-Apr-2019, at 5:53 PM, Peter Otten <__pete...@web.de> wrote: > > Arup Rakshit wrote: > >> I have a very basic function. >> >> def greet(name, msg = "Good morning!"): >> """ >> This function greets

Re: Question regarding the __kwdefaults__ output being None

2019-04-19 Thread Peter Otten
Arup Rakshit wrote: > I have a very basic function. > > def greet(name, msg = "Good morning!"): >""" >This function greets to >the person with the >provided message. > >If message is not provided, >it defaults to "Good >morning!" >""" > >print("Hello",name +