Back to Browse

디버깅? 디버그? 디버거? 모르면 절대 손해인 개발 필수 도구

15.6K views
Jan 16, 2023
14:54

프로그램 오류를 순식간에 해결해주는 디버깅에 대해서 알려드립니다. [예제 링크] https://learn.microsoft.com/ko-kr/visualstudio/python/tutorial-working-with-python-in-visual-studio-step-04-debugging?view=vs-2022 [예제 코드] from math import cos, radians # Create a string with spaces proportional to a cosine of x in degrees def make_dot_string(x): rad = radians(x) # cos works with radians numspaces = int(20 * cos(rad) + 20) # scale to 0-40 spaces st = ' ' * numspaces + 'o' # place 'o' after the spaces return st def main(): for i in range(0, 1800, 12): s = make_dot_string(i) print(s) main() [👨🏻‍🏫스타트코딩 강의 목록 - 파이썬 입문, 스타트코딩과 함께 쉽고 빠르게 배우기 (무료) https://youtu.be/REUu0T1xsiU - 파이썬으로 원하는 데이터 마음대로 수집하기 - 웹크롤링 강의 (무료) https://inf.run/KKtq - 파이썬 크롤링, 자동화 프로그램 만들며 월 100만원 벌기 https://startcoding.liveklass.com/classes/116701

Download

1 formats

Video Formats

360pmp419.4 MB

Right-click 'Download' and select 'Save Link As' if the file opens in a new tab.

디버깅? 디버그? 디버거? 모르면 절대 손해인 개발 필수 도구 | NatokHD