2022.09.09프로젝트C 6-2 QUIZ1번 문제 #include<stdio.h> int main(void) { int x, y, z; scanf("%d%d%d", &x, &y, &z); if(x>y){ if(x>z) { p00
2022.09.09프로젝트C 5-2QUIZ#include<stdio.h> int main(void) { int x = 0, y = 0; scanf("%d%d", &x, &y); printf("Output : %d\n", x + y); return 0; } 00
2022.09.09프로젝트C 3-2QUIZ#include<stdio.h> int main(void) { printf("오늘은 3일차"); printf("정수형 : %d\n", 10); printf("실수형 : %f\n", 1.150000); printf("문자 : %s\n", 00
2022.02.26프로젝트크롤링 13-2 퀴즈다른분들 참고함 from sys import path_importer_cache from selenium import webdriver from selenium.webdriver.chrome.service import Service from webdriver_mana00
2022.02.25프로젝트크롤링 퀴즈 12-2import csv f = open("./covid19_articles.csv",'r') rdr = csv.reader(f) for row in rdr: if '[속보]' in row[2]: print(row[2]) f.close()00
2022.02.24프로젝트크롤링 11-2 퀴즈다른분들꺼 참조..ㅠ from selenium import webdriver from selenium.webdriver.chrome.service import Service from webdriver_manager.chrome import ChromeDriverMan00
2022.02.24프로젝트크롤링 퀴즈 9-2정말 많은분들에게 도움을 받았습니다ㅠ 자꾸 뭐가 안 고쳐져서 왜 이러지 싶었는데 &s를 &2로 적어놔서 자꾸 같은값만 나왔네요... import requests import bs4 rank = { '< G마켓 랭크 순>' : "7", '< 판매 인기00
2022.02.24프로젝트크롤링 8-2원본 : https://browse.gmarket.co.kr/search?keyword=%EB%A7%88%EC%8A%A4%ED%81%AC 판매 인기 순 : https://browse.gmarket.co.kr/search?keyword=%EB%A7%88%EC%8A%A4%00
2022.02.24프로젝트크롤링 7-2 퀴즈저번에 적어주셨던 코드를 기반으로 작성했습니다. import requests import bs4 URL = "https://comic.naver.com/webtoon/weekday" raw = requests.get(URL) html = bs4.Beautifu00