당신이 하고 있는 일이 스택 오버플로에서 복사/붙여넣기 뿐이라고 느낀 적이 있습니까?
한 단계 더 나아가 보겠습니다.
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 표준 라이브러리에서 여러 줄의 코드를 노골적으로 복사했다는 사실과 라이선스가 호환되는 한 원하는 라이선스에 따라 라이선스가 부여됩니다.