개발 공부/python
노마드코더 파이썬 챌린지 [3차]
(1) python 6일차 (2) recap & study *강의 링크* python 웹스크래퍼[4.5 ~ 4.9] *For Loops* websites = ( "google.com", "airbnb.com", "facebook.com" ) #using tuple (list is almost same) for website in websites: #get each components in wesbsite tuples print(website) For문: 위의 예시처럼, 여러 자료형(tuple, list)등에서 각각의 item을 이용해서 코드를 실행시 반복문을 사용 *URL Formatting* websites = ( "google.com", "https://airbnb.com", "facebook.com..