단축키 Shortcuts 단축키( Shortcuts ) 설명( Description ) Esc 모드를 명령모드로 변경( Change mode to command mode ) Enter 모드를 편…
Read More코드 from bs4 import BeautifulSoup import urllib.request as req url = "https://finance.naver.com/marketindex/" res = req.urlopen(url) soup = BeautifulS…
Read More코드 import urllib.request url = "https://bddung1014.blogspot.com/" res = urllib.request.urlopen(url) data = res.read() text = data.decode("utf-8&…
Read Moreurl과 저장 경로를 지정한 후 다운로드해서 파일로 저장하는 방법입니다. 코드 import urllib.request url = "img url" savename="bddung1.png" bd=urllib.request.urlopen(url).rea…
Read More라이브러리를 읽어 들인 후 url과 저장 경로 지정하시고 다운로드 진행하면 됩니다. 코드 import urllib.request url = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgaceQBxncQwEyjG7…
Read MoreAnaconda Site Link ↓↓↓↓↓ https://www.anaconda.com/ WSL Anaconda Setting Link ↓↓↓↓↓ https://bddung1014.blogspot.com/2021/01/wsl-wsl-anaconda-jupyter-feat-kali-l…
Read More코드 ## 변수 선언 coffee=0 ## 함수 정의 def coffee_machine(button) : print("#1. 뜨거운 물을 준비한다."); print("#2. 종이컵을 준비한다"); if coffee == 1:…
Read More코드 inStr, outStr="","" count,i=0,0 inStr=input("문자열을 입력하세요 : ") count=len(inStr) for i in range(0,count) : outStr +=inStr[c…
Read More코드 import random ##함수 def getNumber(): return random.randrange(1,46) #1~45 ##변수 lotto=[] num=0 #메인 print("로또 추첨을 시작합니다.\n"); while True : …
Read More어떤 사이트 도메인을 수집해야 하는데 하위 도메인이 많고 특정 정보한 경우 한 대상에 대한 정보를 수집하는 데 시간이 많이 소요될 수 있습니다. If you need to collect a site domain, but have many subdomains and have specif…
Read More코드 list1=[] list2=[] value=1 for i in range(0,3) : for k in range(0,4) : list1.append(value) value +=1 list2.append(list1) list1=[]…
Read More코드 # 변수 선언 parking=[] top,carName,outCar=0,"A","" select=9 ##메인 코드 while (select !=3) : select=int(input("<1>입차 <2>출차…
Read More코드 예제 myList=[30,10,20] print("현재의 리스트 : %s" % myList) myList.append(40) print("append(40) 후의 리스트 : %s" % myList) myList.pop() print(&quo…
Read More#변수 선언 i,k,heartNum=0,0,0 #반복문 변수 numStr,ch,heartStr="","","" #메인 코딩 numStr=input("숫자를 여러개 입력하세요 : ") #"5678"…
Read More3의 배수를 제외한 수의 합계를 코딩해보겠습니다. hap, i=0,0 for i in range(1,101) : if i % 3==0 : continue hap+=i print("1~100의 합계(3의 배수 제외) : %d" % …
Read More파이참 윈도우 10 버전 다운 링크 Pycharm Windows 10 Version Down Link ↓↓↓↓↓ https://www.jetbrains.com/ko-kr/pycharm/download/#section=windows Professional( 유료 )와 Community(…
Read More파이참 다운로드 링크로 가주세요. ↓↓↓ Please go to the download link for Pycharm. ↓↓↓ https://www.jetbrains.com/ko-kr/pycharm/download/#section=linux Professional or Communit…
Read More