Posts

Showing posts from March, 2023

अंत्योदय अन्न योजना

Image
  अंत्योदय अन्न योजना के अंतर्गत सभी लाभार्थियों को  अंत्योदय   राशन कार्ड  प्रदान किया जाएगा। इसके माध्यम से लाभार्थी 35 किलो राशन जिसमें 20 किलो गेहूं तथा 15 किलो चावल शामिल है प्राप्त कर पाएंगे। लाभार्थी गेहूं ₹2 प्रति किलोग्राम और धान ₹3 प्रति किलोग्राम के हिसाब से खरीद सकते हैं। इस योजना का लाभ केवल वही लोग उठा सकते हैं जिनकी आय का कोई स्थिर साधन नहीं है या फिर वह बहुत गरीब है। अंत्योदय अन्न योजना का आरंभ केंद्र सरकार द्वारा 25 दिसंबर 2000 को खाद आपूर्ति और उपभोक्ता मामले मंत्रालय द्वारा किया गया था। इस योजना के अंतर्गत शुरू में 10 लाख परिवारों को शामिल किया गया था। अब  Antyodaya Anna Yojana  के अंतर्गत दिव्यंगो को भी शामिल कर लिया गया है। यदि आप भी अंत्योदय अन्न योजना का लाभ उठाना चाहते हैं तो आपको आधिकारिक वेबसाइट पर जाकर आवेदन करना होगा। कुछ ऐसे गरीब परिवार के लोग जिनके पास खाने-पीने का कोई साधन नहीं है जिनके पास आय का कोई स्रोत नहीं है और जो पूरी तरह से विकलांग हैं। उन लोगों के लिए, केंद्र सरकार ने 25 दिसंबर 2000 को अंत्योदय अन्न योजना Antyodaya An...

Built in function in list python

🔴 Built in function in list python programming 🔴 🟠 There are five type of list function 🟠 1.Compare 2.Length 3.Maximum 4.Minimum 5.Sequence print("Example of cmp") list1 = [1,2,3,4,5,6] list2 = [7,8,9,5,10] for x in list1:     for y in list2:         if x==y:             print("the common element is:",x)              print("Example of len")      list1=["devang","divya","jayraj"]        print(len(list1)) print("Example of maximum") list1 = [90,19,23,5,60] print(max(list1)) print("Example of minimum") list1 = [90,19,23,5,2] print(min(list1)) print("Example of sequence") str = "Devang" V =list(str) print(type(V)) Output Example of cmp the common element is: 5 Example of le Example of maximu 9 Example of minimu Example of sequenc <class 'list'>   Thank you for visit again

Crud Operation in python

Crud Operation in      Python programming  Coding of Operation  Print("creat operation in list") list1 = [9,0,1,9] print(list1) print(list1[1]) print(list1[-2]) Print("read operation in list") list2 = [5,5,2,0,1,8] print(list2) print(list2[0:5:1]) Print("updating operation in list") list3=["divya","jatin","yash"] print(list3) list3[0]= "devang" print(list3) Print("deleting operation in list") list4=[9,8,7,6,5] print(list4) list4.remove(7) print(list4)  Output of         the  program creat operation in list [9, 0, 1, 9] 0 1 read operation in list [5, 5, 2, 0, 1, 8] [5, 5, 2, 0, 1] updating operation in list ['divya', 'jatin', 'yash'] ['devang', 'jatin', 'yash'] deleting operation in list [9, 8, 7, 6, 5] [9, 8, 6, 5] [Program finished] Thank you for visit