Python

 Computer >> コンピューター >  >> プログラミング >> Python
  1. 2つのリストの共通部分を見つけるPythonプログラム?

    交差演算とは、リスト1とリスト2からすべての共通要素を取得する必要があり、すべての要素が別の3番目のリストに格納されることを意味します。 List1::[1,2,3] List2::[2,3,6] List3::[2,3] アルゴリズム Step 1: input lists. Step 2: first traverse all the elements in the first list and check with the elements in the second list. Step 3: if the elements are matched then store in t

  2. 要素の長さに従ってリストをソートするPythonプログラム?

    ここでは、1つのユーザー入力配列を使用し、要素の長さに従ってリストを並べ替える必要があります。ここでは、Python組み込み関数sorted()を使用します。 例 Input::[“mona”,”pp”,”aaa”] Lengths are [4,2,3] So, the sorted array should be [2,3,4] Output::[“pp”,”aaa”,”mona”] アルゴリズム Step 1: Input list element. Step 2: apply sorted (A,len) function. サンプルコード # To sort a list

  3. Pythonのシーケンスで2番目に繰り返される単語?

    文字列が与えられ、私たちのタスクは2番目に繰り返される単語を見つけることです。ここでは、単語をキーとして、その頻度を値として含む辞書を作成するためのCounter(iterator)を使用します。 アルゴリズム Step 1: Create user define list. Step 2: Then convert list into a dictionary. Step 2: Next get the values and sort them in descending order. Step 3: Then the second element is the second larges

  4. Pythonで無名関数を使用してパワーを印刷しますか?

    ここでは、map()組み込み関数内で無名(ラムダ)関数を使用しました。 Pythonでは、無名関数は名前なしで定義され、ラムダキーワードを使用して定義されます。 アルゴリズム Step 1: input n Step 2: input p Step 3: use anonymous function. Step 4: display result. サンプルコード # To display the powers of any number using anonymous function n = int(input(Enter how many terms want to displa

  5. Pythonでリストの平均を見つけますか?

    Pythonは、n個の要素を計算するためのsum関数を提供します。ここでは、この関数を使用して平均を計算します。 アルゴリズム Step 1: input “size of the list” Step 2: input “Element” Step 3: using sum function calculate summation of all numbers. Step 4: calculate average. サンプルコード # Average of a list A=list() n=int(input(Enter the size of the List ::)) print

  6. リスト内で最大、最小、2番目に大きい、2番目に小さいものを見つけるPythonプログラム?

    配列が与えられたら、最大、最小、2番目に大きい、2番目に小さい数を見つける必要があります。 アルゴリズム Step 1: input list element Step 2: we take a number and compare it with all other number present in the list. Step 3: get maximum, minimum, secondlargest, second smallest number. サンプルコード # To find largest, smallest, second largest and second small

  7. リストから重複要素を削除するPythonプログラム?

    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 element is not present in the list return true. Step 5: append in the

  8. 2つのソートされていないリストのソートされたマージされたリストを作成するPythonプログラム

    ここでは、2つのユーザー入力リストが指定されており、2つのリストの要素はソートされていません。私たちのタスクは、これら2つのソートされていない配列をマージし、その後リストをソートすることです。 例 Input: A [] = {100, 50, 150} B [] = {200, 30, 20} Output: Merge List:{20, 30, 50, 100, 150, 200} アルゴリズム Step 1: first we create two user input list. Step 2: Final merge list size is (size of

  9. 巡回冗長検査へのPythonプログラム

    デジタルデータのエラーを検出するためにCRCが使用され、これは伝送エラーを検出するための優れた手法です。この手法では、主に2進除算が適用されます。 これらの手法では、冗長ビットのシーケンスである巡回冗長検査ビットが存在します。これらのビットはデータユニットの末尾に追加されるため、結果のデータユニットは所定の2進数である1秒で正確に割り切れます。 宛先側では、受信データが同じ数で除算されます。余りがない場合は、データが正しく、受け入れる準備ができていると見なされます。 残りは、移行中に何かが発生したことを示し、データユニットが損傷しています。したがって、このデータユニットは受け入れられませ

  10. 2つの文字列の共通文字をアルファベット順に出力するPythonコード

    2つのユーザー入力文字列が与えられます。私たちのタスクは、すべての一般的な文字をアルファベット順に印刷することです。 例 Input: string1: python string2: program Output: op 説明 2つの文字列に共通する文字は、o(1回)、p(1回)です。 アルゴリズム Step 1: first we take two input string. Step 2: next we will do to convert these two strings into counter dictionary. Step 3: Now find common eleme

  11. シングルトラバーサルでスペースを文字列の前に移動するPythonプログラム

    単語とスペースのセットを持つ文字列が与えられた場合、私たちのタスクは、文字列を1回だけトラバースすることによって、すべてのスペースを文字列の前に移動することです。リスト内包表記を使用して、Pythonでこの問題をすばやく解決します。 例 Input: string = "python program" Output: string= “ pythonprogram" アルゴリズム Step1: input a string with word and space. Step2: Traverse the input string and using l

  12. 文字列を回転させるためのPythonでの文字列スライス

    文字列が与えられます。私たちのタスクは、文字列を2つの方法にスライスすることです。 1つは時計回りで、もう1つは反時計回りです。 1.指定された文字列を左(または反時計回り)にd個の要素(d <=n)だけ回転させます。 2.指定された文字列を右(または時計回り)にd個の要素(d <=n)だけ回転させます。 例 Input: string = "pythonprogram" d = 2 Output: Left Rotation: thonprogrampy Right Rotation: ampythonprogr アルゴリズム Step 1: Enter string

  13. べき乗剰余のためのPythonプログラム

    x、y、zの3つの数値が与えられた場合、私たちのタスクは(x ^ y)%zを計算することです 例 Input: x = 2, y = 3, p = 3 Output: 2 説明 :2 ^ 3%3 =8%3=2。 アルゴリズム Step 1: Input three numbers. Step 2: then we use pow() to calculating power and % for modular. Step 3: display result. サンプルコード x = int(input(Enter First Value ::>)) y = int(inpu

  14. Pythonプログラムは最大3つ。

    3つの数abとcが与えられた場合、私たちのタスクは、与えられた数の中から最大の要素を見つけなければならないということです。 例 Input: a = 2, b = 4, c = 3 Output: 4 アルゴリズム Step 1: input three user input number. Step2: Add three numbers to list. Step 3: Using max() function to find the greatest number max(lst). Step 4: And finally we will print maximum numbe

  15. 2つの行列のPythonプログラム乗算。

    与えられた2つのユーザー入力マトリックス。私たちのタスクは、2つの行列の加算を表示することです。これらの問題では、ネストされたリストを包括的に使用します。 アルゴリズム Step1: input two matrix. Step 2: nested for loops to iterate through each row and each column. Step 3: take one resultant matrix which is initially contains all 0. Then we multiply each row elements of first matrix

  16. Pythonの特定の文字列組み込み関数の順列のためのPythonプログラム

    文字列が与えられます。私たちのタスクは、指定された文字列の順列を表示することです。ここでは、組み込み関数の順列(反復可能)を使用してPythonでこの問題を解決します。 例 Input : string = 'XYZ' Output : XYZ XZY YXZ YZX ZXY ZYX アルゴリズム Step 1: given string. Step 2: Get all permutations of string. Step 3: print all permutations. サンプルコード from itertools import permutations def a

  17. あなたの体のBMI(ボディマス指数)を計算するPythonプログラム

    身長と体重を入力する必要があります。私たちの仕事は、数式を使用してBMIを計算することです。 アルゴリズム Step 1: input height and weight of your body. Step 2: then applying the formula for calculation BMI. Step 3: display BMI. サンプルコード height = float(input(Enter your height(m): )) weight = float(input(Enter your weight(kg): )) print(Your BMI is: ,

  18. 2つの行列のPythonプログラムの追加

    与えられた2つのユーザー入力マトリックス。私たちのタスクは、2つの行列の加算を表示することです。これらの問題では、ネストされたリストを包括的に使用します。 アルゴリズム Step1: input two matrix. Step 2: nested for loops only to iterate through each row and columns. Step 3: At each iterationshall add the corresponding elements from two matrices and shall store the result. サンプルコード

  19. サブリストの2番目の要素に従ってリストをソートするPythonプログラム。

    リストが与えられたら、私たちのタスクはサブリストの2番目の要素に従ってリストをソートすることです。ここでは、単純なバブルソートを適用します。 例 Input : [['CCC', 15], ['AAA', 10], ['RRRR', 2],['XXXX', 150]] Output : [['RRRR', 2], ['AAA', 10], ['CCC', 15], ['XXXX', 150]] アルゴリズム Step 1: Given a list. Step 2:

  20. Pythonを使用してHTMLをPDFに変換する方法

    Pythonは、HTMLドキュメントをPDFに変換するPdfcrowdAPIv2を提供します。このAPIは非常に使いやすく、統合には数行のコードしか必要ありません。 インストール Install the client library from PyPI $ pip install pdfcrowd 変換は、Webページ/HTMLからPDFへの次の3つのステップで完了します ステップ1 −ライブラリpdfkitをダウンロードする $ pip install pdfkit ステップ2 −今すぐwkhtmltopdfをダウンロード Ubuntu/Debianの場合- sudo ap

Total 8994 -コンピューター  FirstPage PreviousPage NextPage LastPage CurrentPage:72/450  20-コンピューター/Page Goto:1 66 67 68 69 70 71 72 73 74 75 76 77 78