Python 입문 강좌 4.원조 기본 조작<br>오리지널

앞에서 간단하게 소개 하 였 습 니 다Python 목록 기본 동작.여기 서 Python 모듈 에 관 한 조작 을 간단히 설명 하 겠 습 니 다.

>>> dir(tuple) #          
['__add__', '__class__', '__contains__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 'count', 'index']
>>> t1 = () #     
>>> tuple() #     
()
>>> (1,) #           (           ,        ,)
(1,)
>>> 1,
(1,)
>>> 2,3 #                   
(2, 3)
>>> x,y = 2,3 #       
>>> x
2
>>> y
3
>>> x,y = y,x #      ,  x y   
>>> x
3
>>> y
2
>>> t2 = (1,2,3)
>>> t2[1] #     1   
2
>>> t2[1] = 4 #       ,     !
Traceback (most recent call last):
 File "<pyshell#14>", line 1, in <module>
  t2[1] = 4
TypeError: 'tuple' object does not support item assignment
>>> t3 = (2,3,3,3,4,5)
>>> t3.count(3) # count()         3   
3
>>> t3.index(4) # index()      4     
4

다시 한 번 주의:원 조 는 그 값 을 바 꿀 수 없습니다!!
간단 한 입문 강좌~
기본 한눈 에~O(∩∩)O~
미 완성 계속~~~토론 을 환영 합 니 다!!

좋은 웹페이지 즐겨찾기