Notice
Recent Posts
Recent Comments
Link
목록pep가이드 (1)
가볍게 배우고 깊게 즐기고 오래 남기기
[Python||해결방법] Jupyter Hub에서 불필요한 PEP 8 스타일 에러 없애기 : E302 E265 W293 E225 (flake8)
Run은 되지만 주석 스타일 가이드로 눈에 거슬리는 에러들 해결하기 E302: Expected 2 blank lines, found 1E265: Block comment should start with '# 'W293: Blank line contains whitespaceE225: Missing whitespace around operator주석 스타일 가이드 warning 모든 것들을 일괄처리하는 코드 : # flake8: noqa * E302: Expected 2 blank lines, found 1 해결하기 - 주석 블록은 # 뒤에 공백으로 시작할 것 As-isfrom datetime import datetime, timedeltadef example_function(param1, pa..
Programming & Tip/Python
2024. 7. 26. 20:50