スタック オーバーフローからコピー&ペーストしているだけだと感じたことはありませんか?
さらに一歩進めてみましょう。
from stackoverflow import quick_sort
検索結果を調べます[python] quick sort
は、そうでない最大のコード ブロックを探します。 >> > from stackoverflow import quick_sort , split_into_chunks
>> > print ( quick_sort . sort ([ 1 , 3 , 2 , 5 , 4 ]))
[ 1 , 2 , 3 , 4 , 5 ]
>> > print ( list ( split_into_chunks . chunk ( "very good chunk func" )))
[ 'very ' , 'good ' , 'chunk' , ' func' ]
>> > print ( "I wonder who made split_into_chunks" , split_into_chunks . __author__ )
I wonder who made split_into_chunks https : // stackoverflow . com / a / 35107113
>> > print ( "but what's the license? Can I really use this?" , quick_sort . __license__ )
but what ' s the license ? Can I really use this ? CC BY - SA 3.0
>> > assert ( "nice, attribution!" )
このモジュールは、私が Python 標準ライブラリから複数行のコードを露骨にコピーしたという事実とライセンスが互換性がある限り、任意のライセンスでライセンス供与されます。