Home / Questions / Other Variable number of keyword arguments कैसे लेते हैं? Other 0 Views Verified Variable number of keyword arguments कैसे लेते हैं? #python #python programming #coding #developer Sarkari Result QA Bank Editorially reviewed exam information Share
Verified Correct Answer def show(**data): print(data) def show(**data): print(data) Additional Explanation **kwargs arbitrary keyword arguments को dict में लेते हैं।