x = { 'Harry' : 37.21 , 'Berry' : 37.21 , 'Tina' : 37.2 , 'Akriti' : 41.0 , 'Harsh' : …
$ sudo apt-get install python if python3 is installed and shows python not found then just use the bellow command $ sudo apt install python-is-py…
#q1(prime number) def prime(x,y): s=[] for i in range(x,y+ 1 ): for n in range( 2 ,i): …
#reverse dictionary with multiple value(duplicate key) by Kanha mydict = { '1' : 'kanha' , '2' : 's…
Rename A Project Name Rename the oldprojectname directory to newprojectname manage.py : Change os.environ.setdefault('DJANGO_SETTINGS_MODUL…
# Reversing a list using reversed() def Reverse(lst): return [ele for ele in reversed (lst)] # Driver Code lst = [ 10 , 11 , 12 , 1…