Development/Python(797)
-
정수형, 정수의 진수 표현법
int· 정수형 상수· 정수형(INTeger)이란 말 그대로 정수를 뜻하는 자료형· Python 3.x에는 long형이 없어지고 작은 숫자와 큰 숫자 모두 int 형으로 표현합니다.· Python 3.x에서는 maximum size값을 더 이상 가지고 있지 않습니다. 정수의 진수 표현법 >>> 10 10 >>> 0x10 16 >>> 0o10 8 >>> 0b10 2 >>> 10, 0x10, 0o10, 0b10 (10, 16, 8, 2) 파이썬에서는 따옴표가 없는 숫자는 숫자로 인식 >>> print(12.3+12.3) 24.6 곱셈*(에스터리스크, Asterisk, 키보드 자판에서 숫자 8 위)를 사용 >>> print(8/2) 4.0
-
Problem Solving with Algorithms and Data Structures using Python
Problem Solving with Algorithms and Data Structures using PythonPython 활용한 알고리즘 및 자료구조 http://interactivepython.org/runestone/static/pythonds/index.html
-
대화식 모드에서 모듈파일 실행하기
eclipse에서 대화식 모드로 실행하기http://codedragon.tistory.com/4624 모듈파일 실행하기execfile()함수안에 실행시키고자하는 모듈파일명을 확장자와 함께 입력하면 대화식 모드에서 바로 실행된 결과를 확인할 수 있습니다.
-
Python's Web Framework Benchmarks
Python's Web Framework Benchmarks http://klen.github.io/py-frameworks-bench/
-
재귀함수(Recusive Function) 수행 로직 애니매이션
재귀함수(Recusive Function) 수행 로직 애니매이션 https://blog.penjee.com/wp-content/uploads/2015/04/top-5-programming-animated-gifs_recursion-animted-gif.gif
-
Grumpy - Python을 Go로 변환하는 트랜스컴파일러 오픈소스
GrumpyPython을 Go로 변환하는 트랜스컴파일러 오픈소스코딩은 파이썬으로하고 실행은 GO로 할 수 있습니다.Grumpy is a Python to Go source code transcompiler and runtime.https://github.com/google/grumpy Grumpy: Go running Python!https://opensource.googleblog.com/2017/01/grumpy-go-running-python.html?m=1