python のエラーです。AttributeError: 'list' オブジェクトには 'sorted' という属性がありません。
2022-02-21 18:13:23
リスト学習エラーです。AttributeError: 'list' オブジェクトには 'sorted' という属性がありません。
sort()とsorted()の違いに注意を払わない
sort() is a method, sorted() is a function, methods are calls, functions do data passing
では、その違いについて。
#3.3.1 Permanent sorting of queues using sort()
cars=['bmw','audi','toyato','subaru']
print(cars)
cars.sort()
print(cars)
##sort() method permanently sorts the list in alphabetical order and can never be restored
##sort in reverse alphabetical order
cars.sort(reverse=True)
print(cars)
##Pass the parameter reverse=True to the sort() method
## Use the sort() function to temporarily sort the list
cars=['bmw','audi','toyato','subaru']
print(sorted(cars))
print(cars)
##So the sorted() function doesn't change the original order of the list
##Note that sorted() is a function, so the elements of the list should be passed into the function
print(sorted(cars,reverse=True))
print(cars)
## pass the list and reverse=True to the sorted() function in reverse order
## Note the mistake here, sort() is a method, sorted() is a function, method is a call, function does data transfer
sorted() は、新しいリストを返す関数です。
x=sorted(cars)
print(x) carsリストの中身は変わっていない
cars.sort() 元のリストは直接メソッドを呼び出すので、ソートされて元に戻らなくなる
関連
-
ユニコード・オブジェクトは、ハッシュ・エラーの解決前にエンコードする必要があります。
-
PythonでクロールするときにAttributeError: 'NoneType' オブジェクトに 'find_all' 属性がないのを解決する
-
Python_matplotlib の凡例は外側に保存すると不完全になる
-
[Python] error could not broadcast input array from shape (26) into shape (26,1)
-
from scipy.interpolate import spline errorImportError: cannot import name 'spline'.
-
AttributeError: モジュール 'pip' には 'main' という属性がありません。
-
TypeError: 'numpy.ndarray' オブジェクトが呼び出し可能でないエラー処理
-
pythonフレームワーク Scrapyエラー TypeError: 'float' object is not iterable Solve
-
Python辞書
-
Pythonモジュールの簡単な説明(とても詳しいです!)。
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
[Django] CSRF 検証に失敗しました。
-
ImportError: torchvision という名前のモジュールがありません。
-
pip AttributeError: 'module' オブジェクトには 'SSL_ST_INIT' という属性がありません。
-
Python pipを使ったpymysqlモジュールのインストール (Error: ImportError: No module named pymysql)
-
Python|ModuleNotFoundErrorを解決する。utils' という名前のモジュールがありません。
-
Pythonエラー解決] 'urllib2'という名前のモジュールがない解決方法
-
np.random.multivariate_normalメソッド解析
-
idea create python project report Unresolved reference 'xxx' .... の解決策
-
pythonのエラーです。ValueError: 閉じたファイルへのI/O操作
-
tkinter モジュールを使った Python 倉庫番ゲーム