Posts

Image
  Rishabh Pant, Jasprit Bumrah and Shreyas Iyer: Full list of injured players in IPL 2023 From Rishabh Pant, Jasprit Bumrah, Shreyas Iyer, here is the list of players who are set to miss the bus of the Indian Premier league 2023 season. Injured players in IPL 2023: The 16th edition of the Indian Premier League (IPL) is all set to start on March 31 when defending champions Gujarat Titans take on four-time champions Chennai Super Kings. However, big names like Rishabh Pant, Jasprit Bumrah, and Shreyas Iyer will miss the season due to injuries. In addition to these Indian stars, many franchises will miss some of their key players for the upcoming series. Who are they ? Let’s find out- RECOMMENDED FOR YOU 1 Corruption was a non-issue in BCCI: Former anti-corruption chief Neeraj Kumar 2 Bangladesh rout Ireland in 2nd T20, clinch series 3 Awaiting ECB clearance, Livingstone to miss Punjab Kings’ opener against KKR 4 Will try to be unpredictable for bowlers: Joe Root ahead of maiden IPL s...

How To Link Aadhaar With Voter ID

Image
મતદાર ID સાથે આધાર કેવી રીતે લિંક કરવું  આ લેખમાં, અમે ચર્ચા કરીશું કે તમારા આધાર કાર્ડને તમારા મતદાર ID સાથે કેવી રીતે લિંક કરવું પરિચય  આધાર યોજનાની શરૂઆત આખરે આ દેશમાં બાકી રહેલી સૌથી મહત્વપૂર્ણ આવશ્યકતાઓમાંની એક પર બોલ રોલિંગ સેટ કરવામાં સફળ રહી છે: દેશના તમામ રહેવાસીઓની ઓળખ સાથે તેમની બાયોમેટ્રિક ઓળખ સાથેનું રાષ્ટ્રીય રજિસ્ટર. વિવિધ સરકારી યોજનાઓના લાભો વાસ્તવમાં મતદાર ID યોજનાઓ સાથે આધારના ઇચ્છિત લાભાર્થીઓ સુધી પહોંચે તેની ખાતરી કરવા માટે પારદર્શિતા સુનિશ્ચિત કરવા માટે આ એક મોટું પગલું છે.  આધાર કાર્ડ હવે ભારતીય નિવાસી માટે સૌથી આવશ્યક ID પ્રૂફ છે કારણ કે તેનો ઉપયોગ અસંખ્ય હેતુઓ માટે થઈ શકે છે. તમામ લાભો મેળવવા માટે, અમારે અમારા બાકીના સરકારી દસ્તાવેજો સાથે અમારા આધાર કાર્ડને લિંક કરવું આવશ્યક છે જેથી કરીને દરેક વ્યક્તિગત નિવાસી માટે તમામ ઓળખની કેન્દ્રિય સિસ્ટમ બનાવી શકાય. કેટલીક સૌથી લોકપ્રિય અથવા ઉપયોગી લિંક્સમાં અમારા પાન કાર્ડ, મતદાર ID અને વીમા પૉલિસીનો સમાવેશ થાય છે. આ બ્લોગમાં, અમે આધાર કાર્ડને મતદાર ID સાથે લિંક કરવા માટે કયા પગલાં ભરવાની જરૂર છે અને બંન...
#list in-built functions In python  > 1 - len > 2 - max > 3 - min  list1=[10,20,30,40,50] list2=[11,22,33,44,55,66,77] print(list1) print(list2) #len-to find length of the string print(len(list1)) print(len(list2)) #max-to find maximum value from the list print(max(list1)) print(max(list2)) #min-to find minimum value from the list print(min(list1)) print(min(list2)) #list(anysequence)-to convert any sequence to the list str="Dharmesh" x=list(str) print(x) print(type(x)) print("\n\nTHANKS FOR VISIT THIS BLOG ") #OUTPUT OF THIS CODE [10,20,30,40,50] [11,22,33,44,55,66,77] 5 7 50 77 10 11 ['D', 'h','a', 'r', 'm', 'e', 's', 'h'] <class 'list'>                 THANKS FOR VISIT THIS 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[0:4]) print("\n-----------------") print("Create List In Character") print("-----------------\n") #Character Index list2 = ["Ram","pranay"] print(list2) print(list2[0]) print("\n-----------------") print("Read ---> Element \nDisplay ---> Element") print("-----------------\n") #Display Element Read Element list3 = ["Dharmesh","khambhaliya"] for i in list3:  print(i) print("\n-----------------") print("Updating In list Value (Character)") print("-----------------\n")  #Update  list4 = ["ABC","DEF"] print(list4) list4[1] = "CBA" print(list4) print("\n-----------------") print("Updating In list Value (Digit)...