IPアドレスから先行ゼロを削除するPythonプログラム
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
-
Pythonでラベルからテキストを削除するにはどうすればよいですか?
Tkinterは、GUIベースのアプリケーションの作成と開発に使用されるPythonライブラリです。この記事では、テキストが含まれるラベルからテキストを削除する方法を説明します。 ラベルからテキストを削除するために、ラベルのトリガーとして機能する関連ボタンを作成します。 例 #import Tkinter Library from tkinter import * #Create an instance of tkinter frame win= Tk() #Define the size and geometry of the frame win.geometry("700x
-
特定の文から重複する単語をすべて削除するPythonプログラム。
与えられた文。特定の文から重複する単語をすべて削除します。 例 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 string in a given list of strings. Step 3: