Posts

IPL

Image
  Get the Latest Updates, Trends, Blogs, Stories, and News about IPL The advantages of having Chandrakant Pandit as the coach of KKR Can Shikhar Dhawan power Punjab Kings to their first IPL title? Mon Mar 27 2023 |  42  Harsh Chopra   IPL 2023 GT schedule | Gujarat Titans fixtures, date, time, venue, form and latest points table position Mon Mar 27 2023 |  68  Sandipan Ghosh IPL 2023 LSG schedule | Lucknow Super Giants fixtures, date, time, venue, form and latest points table position Mon Mar 27 2023 |  43  Sandipan Ghosh  |   IPL 2023 RCB schedule | Royal Challengers Bangalore fixtures, date, time, venue, form and latest points table position Mon Mar 27 2023 |  80  Sandipan Ghosh IPL 2023 RR schedule | Rajasthan Royals fixtures, date, time, venue, form and latest points table position Sun Mar 26 2023 |  49  Sandipan Ghosh Most Popular of IPL     IPL 2023 SRH schedule | SunRisers Hyderabad fixtures, dat...

Sorared

Image
BLOGGER TEMPLA TES BY… Features:  Responsive  •  Seo Friendly  •  Ads Ready  •  Slideshow  •  Social Bookmark Ready  •  Drop Down Menu  •  Vertical Drop Down Menu  •  Email Subscription Widget  •  Post Thumbnails  •  Breadcrumbs Navigation  •  Tabbed Widget  •  Page Navigation  •  Footer Column  •  Sidebars  •  Fast Loading  •  Instagram Ready  •  Browser Compatibility  •  WhatsApp Sharing  •  Google  •  AMP Styles:  Magazine  •  Minimalist  •  Portfolio  •  Simple  •  Clean  •  Modern  •  Elegant  •  Wordpress Themes Looks  •  Gallery  •  3D Style  •  Stylish Topics:  Movie  •  Anime  •  News  •  Photography  •  Culture  •  Personal Page...

Python Built in functions

#python list in-built functions   ~ 1 - len ~ 2 - max ~ 3 - min  list1=[11,25,58,65,83,94] list2=[23,35,46,87,91] print(list1) print(list2) #len-to find length print(len(list1)) print(len(list2)) #max-to find maximum value  print(max(list1)) print(max(list2)) #min-to find minimum value  print(min(list1)) print(min(list2)) #list(anysequence)-to convert any sequence to the list str="Ram" A=list(str) print(A) print(type(A)) print("\n\nthanks for visit my blog") #OUTPUT OF THIS CODE [11,25,58,65,83,94] [23, 35, 46, 77, 87, 91] 6 5 93 87  25 ['R,'a,'m,'] <class 'list'>                    Thnks for visit my blog                 

Crud

 print("-----------------") print("Create List") print("-----------------\n") #Ceate List On digit list1 = [1,2,3,4,5] print(list1) print(list1[1]) print(list1[4]) print(list1[1:3]) print("\n-----------------") print("Create List In Character") print("-----------------\n") #Character Index list2 = ["dharmesh","keval"] print(list2) print(list2[0]) print("\n-----------------") print("Read ---> Element \nDisplay ---> Element") print("-----------------\n") #Display Element Read Element list3 = ["Ram","Bhanvad"] for i in list3: print(i) print("\n-----------------") print("Updating In list Value (Character)") print("-----------------\n") #Update  list4 = ["ABC","DEF"] print(list4) list4[1] = "AAA" print(list4) print("\n-----------------") print("Updating In list Value (Digit)...