Python program to pass Dictionary as argument to function and achieve Output..
Aniket Gade
Friday, July 10, 2020
PYHTON PROGRAM def func(dict): for i in dict: print("Name:",i,"\nAge:",dict[i]) Dictionary={"SG":19,...
Hey If you are beginner and want to learn a python then you are on right path. Learn basic as well as advanced programming in Python.
PYTHON PROGRAM str=input("Enter a string:") l=0 for i in str: l+=1 print("Length of Entered String is:-" ,l) *** Input ...