"Python"의 두 판 사이의 차이

ph
이동: 둘러보기, 검색
21번째 줄: 21번째 줄:
 
  sys.maxint
 
  sys.maxint
 
[http://stackoverflow.com/a/7604981/766330]
 
[http://stackoverflow.com/a/7604981/766330]
 +
 +
 +
 +
==Argument parsing==
 +
use [https://docs.python.org/2.7/library/argparse.html#action argparse]

2017년 4월 10일 (월) 11:48 판

is and ==

is is identity testing, == is equality testing. what happens in your code would be emulated in the interpreter like this:

>>> a = 'pub'
>>> b = ''.join(['p', 'u', 'b'])
>>> a == b
True
>>> a is b
False

[1]


Access index in for loop

for idx, val in enumerate(ints):
   print(idx, val)

[2]


Max integer

sys.maxint

[3]


Argument parsing

use argparse