파이썬(5)
-
마인크래프트 파이썬 연동
https://hi-coding.tistory.com/1 #1. 설치하기(윈도우 PC) 마인크래프트에서 파이썬 프로그램을 실행하기 위해서는 필요한 프로그램들이 있습니다. 먼저 윈도우 PC 환경에서 필요한 설정을 알아봅시다. 마인크래프트(https://minecraft.net/ko-kr/) 파이썬 3(https hi-coding.tistory.com https://wikidocs.net/107240 2. 파이썬 설치 ## 파이썬 설치 유무 확인하기 먼저 파이썬을 설치하기 전에 사용할 pc에 파이썬이 설치되어 있는지 확인해봅시다. `window 키 + r` 를 누르고 cmd 검색 후 ... wikidocs.net spigot 다운 : https://getbukkit.org/get/a3003972a592e3c..
2022.03.19 -
python pip upgrade
python -m pip install --upgrade pip
2021.02.08 -
list 순서 뒤집기
list = [ 1, 7, 5] list.reverse() print(list) [5, 7, 1] temp = list(reversed(list)) print(temp) [1, 7, 5] print(list) [5, 7, 1]
2020.12.27 -
파이썬으로 로또당첨번호 수집하기
from urllib.request import urlopen from bs4 import BeautifulSoup import ssl import datetime import sys import pandas as pd from IPython.display import display import os def main(base_dir) : dir = base_dir print(dir) if os.path.exists('%s/lotto.csv' %dir) : df = pd.read_csv('%s/lotto.csv' %dir, index_col=0,parse_dates=['날짜']) last_turn = df['회차'].max() #print(last_turn) else : df = pd.DataFrame(c..
2019.10.29 -
스마트폰에 파이썬 설치하기
1. 스마트폰에 QPython3 설치 2. Console 실행 3. print('Hellow World!') 실행 4. Editor 실행하여 프로그램 짜기
2019.10.23