+ 2
Module Making
I'm makin' a module and I want the functions to have *args and **kwargs but there is a error https://code.sololearn.com/cofAiAxlyGzg/?ref=app
4 Answers
+ 3
it should be like this: syspath_Win(*args, **kwargs)
and you:
syspath_Win(**args, **kwargs)
0
Thx
0
Ye
0
How would you make this code work?
>>Code
import _whatever_ as wt
wt.text(text="hi")
>>Output
hi