목록Coding/Python (55)
0w0
1 2 3 4 5 6 7 8 9 10 11 12 13 import urllib.request imgurl="https://recipe1.ezmember.co.kr/cache/recipe/2015/06/18/e13c9a3f876e8723761c6e044e0c0aa11.jpg" urllib.request.urlretrieve(imgurl,"./후라이.jpg") def test(): print("hi") Colored by Color Scripter cs
[3.5] 한글 출력을 위한 utf-8 인코딩을 표준 입출력 및 표준 에러에 적용 import sysimport io sys.stdout = io.TextIOWrapper(sys.stdout.detach(), encoding='utf-8')sys.stderr = io.TextIOWrapper(sys.stderr.detach(), encoding='utf-8') [3.6] 한글 출력 #-*-conding:utf-8-*-
http://euler.synap.co.kr/prob_detail.php?id=2 피보나치 수열의 각 항은 바로 앞의 항 두 개를 더한 것이 됩니다. 1과 2로 시작하는 경우 이 수열은 아래와 같습니다.1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ...짝수이면서 4백만 이하인 모든 항을 더하면 얼마가 됩니까? 소스 temp=0n1=1n2=2result=0 while temp
서브라임 텍스트 3 라는 에디터로 파이썬을 사용하겠습니다 1. 파이썬 설치 https://www.python.org/ 2. Sublime Text 3 설치 https://www.sublimetext.com/ 3. Sublime Text 3 에 Package Control 설치 https://packagecontrol.io/installation import urllib.request,os,hashlib; h = 'df21e130d211cfc94d9b0905775a7c0f' + '1e3d39e33b79698005270310898eea76'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.reque..
입력한 문자열을 hex로encode 함수를 사용!!>>> input_str=raw_input("String : ")String : ABCD>>> print input_strABCD>>> input_str.encode("hex")'41424344' hex를 문자열로decode 함수를 사용!!>>> hex_value=input_str.encode("hex")>>> hex_value.decode("hex")'ABCD' 문자열을 base64로>>> a=input_str.encode("base64")>>> print aQUJDRA== base64를 문자열로>>> a.decode("base64")'ABCD'