52장 카드만들기

Python_Study 2014. 8. 20. 14:02

alist = []

for i in ["spade","heart","diamond","clover"]:

    for j in ["A",2,3,4,5,6,7,8,9,10,"J","Q","K"]:

        alist.append((i,j))

print alist



'Python_Study' 카테고리의 다른 글

python pip  (0) 2015.08.21
Flask 정리  (0) 2015.02.05
[python] xlwt - Excel 생성 모듈  (0) 2014.01.09
[python] List  (0) 2013.12.17
python 변수 데이터 type  (0) 2013.12.10
Posted by 뭉탁거림
,