Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> Python

एक आईपी पते से अग्रणी 0 को हटाने के लिए पायथन कार्यक्रम

IP पता नीचे दिया गया है, हमारा कार्य IP पते से अग्रणी शून्य को हटाना है। पहले हम दिए गए स्ट्रिंग को "।" से विभाजित करते हैं। और फिर इसे एक पूर्णांक में परिवर्तित करें और प्रमुख शून्य को हटा दें और फिर उन्हें एक स्ट्रिंग में वापस जोड़ दें।

उदाहरण

Input : 200.040.009.400
Output : 200.40.9.400

एल्गोरिदम

Step 1: Input the IP address.
Step 2. Splits the ip by ".".
Step 3: Then convert the string to an integer we can use int (parameter) function.
Step 4: Removes the leading zeroes.
Step 5: Then convert it back to string by str (parameter) and then join them back by using join function.

उदाहरण कोड

# Python program to remove leading zeros an IP address and print #the IP
# function to remove leading zeros
def IP(ip):
   zeroip = ".".join([str(int(i)) for i in ip.split(".")])
   return zeroip ;
   # Driver code
   ip =input("Enter the IP address ::>")
print("New Ip Address ::>",IP(ip))

आउटपुट

Enter the IP address ::>200.006.020.900
New Ip Address ::> 200.6.20.900

  1. पायथन में किसी लेबल से टेक्स्ट कैसे निकालें?

    Tkinter एक पायथन लाइब्रेरी है जिसका उपयोग GUI- आधारित एप्लिकेशन बनाने और विकसित करने के लिए किया जाता है। इस लेख में, हम देखेंगे कि किसी लेबल से टेक्स्ट को कैसे हटाया जाए, जिसमें कुछ टेक्स्ट होगा। किसी लेबल से टेक्स्ट हटाने के लिए, हम एक संबद्ध बटन बनाएंगे जो लेबल के लिए ट्रिगर के रूप में कार्य करे

  1. एक सूची से डुप्लिकेट तत्वों को हटाने के लिए पायथन कार्यक्रम?

    एक सूची डुप्लिकेट तत्व के साथ दी गई है, हमारा कार्य दूसरी सूची बनाना है जिसमें बिना डुप्लिकेट के तत्व शामिल हैं। उदाहरण A::[2,3,4,3,4,6,78,90] Output::[2,3,4,6,78,90] एल्गोरिदम Step 1: create a list. Step 2: create a new list which is empty. Step 3: traverse every element in list. Step 4: if elem

  1. किसी दिए गए वाक्य से सभी डुप्लिकेट शब्द को हटाने के लिए पायथन प्रोग्राम।

    एक वाक्य दिया। दिए गए वाक्य से सभी डुप्लीकेट शब्द हटा दें। उदाहरण Input: I am a peaceful soul and blissful soul. Output: I am a peaceful soul and blissful. एल्गोरिदम Step 1: Split input sentence separated by space into words. Step 2: So to get all those strings together first we will join each strin