#keywordarguments are like javascript taking an object as a…
#keywordarguments are like javascript taking an object as a prop with different named properties, so it solves the issue of having func(1, 2, 3) where the nature of the parameters is unclear by doing:
JS: func({ descriptiveName: 1, otherName: 2 }) with python keyword args, this functionality is built in: Python: func(descriptiveName=1, otherName=2)
Replies
using **