1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import random as rd
#from random import randrange random.randrange를 random. 찍지 않고 바로 쓸수 있다
#from random import * 마치 현재 코드에 있는것처럼 . 안찍고 쓸수 있다.
 
aa = []
aa[1]   # 값으로 나온다.
aa[1:2# 리스트로 나온다.
 
aa = aa + aa  #리스트끼리 잇는다
aa = aa * 2  #리스트 두배
 
 
#Slicing
aa[::2 ]     #두칸씩 건너뛰기 짝수만 뽑기.
aa[::-1]     #뒤집기
aa[::-2]     #뒤집고 짝수번째만 뽑기.
 
aa[1]   = [123.123]          #해당 인덱스에 리스트를 넣는다.
aa[3:4= [1234,1234,1234]   #리스트 3번 인덱스에 1234를 3개 넣는다.
 
aa = None                    #해당 메모리 해제.가비지 컬렉터에게 알려주기.
 
 
#pop
myList.pop()   #후입 선출로 구현
myList.pop(0)  #선입 선출로 구현
 
 
#정렬
myList.sort(reverse=True)     # 지가 정렬된다.
sorted(myList, reverse=True)  # 정렬된 결과만 출력
myList.reverse() #뒤집기.
myList.index(10)    #해당 값에 해당하는 인덱스를 리턴.
 
 
#카피
newlist = list.copy()
newlist = list[:]      #리스트의 값을 복사.
 
#리스트 ZIP
list  = [1,2,3]
list2 = [4,5,6]
for x,y in zip(list, list2):
    print("{} : {}".format(x, y))

for key, value in dict.item():
print(key, value)

 
 
#튜플 정렬
tl = sorted(tdic.items(), key=operator.itemgetter(1), reverse=True)   # 정렬하는데 키를 1번째 인덱스를 기준으로 정렬하라..!
 
 
pprincs


+ Recent posts