工業製造
産業用モノのインターネット | 工業材料 | 機器のメンテナンスと修理 | 産業プログラミング |
home  MfgRobots >> 工業製造 >  >> Industrial programming >> Python

例を使用した Python 文字列 strip() 関数

Python strip() とは?

Python strip() 関数は、Python ライブラリで利用可能な組み込み関数の一部です。 strip() メソッドは、指定された文字を元の文字列の最初と最後から削除します。デフォルトでは、strip() 関数は文字列の先頭と末尾から空白を削除し、空白を除いた同じ文字列を返します。

この Python チュートリアルでは、次のことを学びます:

strip() メソッドの構文

string.strip([characters])

パラメータ

戻り値

Python 文字列 strip() は以下を返します:

Python の strip() 関数の例

例 1:Python の strip() メソッド

str1 = "Welcome to Guru99!"
after_strip = str1.strip()

出力:

Welcome to Guru99!

例 2:無効なデータ型に対する strip()

Python String strip() 関数は文字列に対してのみ機能し、リストやタプルなどの他のデータ型で使用するとエラーが返されます。

list()で使用する場合の例

mylist = ["a", "b", "c", "d"]
print(mylist.strip()) 

上記はエラーをスローします:

Traceback (most recent call last):
  File "teststrip.py", line 2, in <module>
    print(mylist.strip())
AttributeError: 'list' object has no attribute 'strip'

例 3:文字パラメータなしの strip()

str1 = "Welcome to Guru99!"
after_strip = str1.strip()
print(after_strip)

str2 = "Welcome to Guru99!"
after_strip1 = str2.strip()
print(after_strip1)

出力:

Welcome to Guru99!
Welcome to Guru99!

例 4:strip() 文字パラメーターを渡す

str1 = "****Welcome to Guru99!****"
after_strip = str1.strip("*")
print(after_strip)

str2 = "Welcome to Guru99!"
after_strip1 = str2.strip("99!")
print(after_strip1)
str3 = "Welcome to Guru99!"
after_strip3 = str3.strip("to")
print(after_strip3)

出力:

Welcome to Guru99!
Welcome to Guru
Welcome to Guru99!

Python の strip() 関数が使用される理由

ここに、Python のストリップ関数を使用する理由があります

まとめ:


Python

  1. Python 関数の引数
  2. Python クロージャー
  3. Java String charAt() メソッドと例
  4. 例を使用したJava文字列のendsWith()メソッド
  5. 例を使用した Python 文字列 count()
  6. Python String format() 例で説明
  7. Python 文字列の長さ | len() メソッドの例
  8. Python String find() メソッドと例
  9. 例を含む Python Lambda 関数
  10. 例を使用した Python round() 関数
  11. 例を使用した Python map() 関数