관리 메뉴

웹개발자의 기지개

[python] 파이썬 기본 수업 2일차(1/6) - 리스트, 딕셔너리, 함수 본문

python/파이썬 교육

[python] 파이썬 기본 수업 2일차(1/6) - 리스트, 딕셔너리, 함수

http://portfolio.wonpaper.net 2020. 6. 12. 10:41

heroes = []
type(heroes)

-----

list

 

heroes.append("아이언맨")

print(heroes)

----

['아이언맨']

 

heroes.append("닥터스트레인지")

print(heroes)

----

['아이언맨','닥터스트레인지']

 

 

print(heroes[0])

----

아이언맨

 

letters = ['a','b','c','d','e','f']
print(letters)

-----

['a', 'b', 'c', 'd', 'e', 'f']

 

print(letters[2:5])

-----

['c', 'd', 'e']

 

print(letters[3:])

---

['d', 'e', 'f']

 

print(letters[:3])

----

['a', 'b', 'c']

 

 

heroes[1] = "헐크"
heroes

-----

['아이언맨', '헐크']

 

heroes.append('토르')
heroes.append('aaaa')
heroes.append('bbbb')
heroes
----
['아이언맨', '헐크', '토르', 'aaaa', 'bbbb']

heroes.insert(1,"홍길동")
heroes
----
['아이언맨', '홍길동', '헐크', '토르', 'aaaa', 'bbbb']

heroes.remove("헐크")
heroes
----
['아이언맨', '홍길동', '토르', 'aaaa', 'bbbb']

 

book = {}
type(book)

----

dict

 

book["홍길동"] = "010-1234-5678"
print(book)

----

{'홍길동': '010-1234-5678'}

 

ook["김철수"] = "010-2222-3333"
print(book)

----

{'홍길동': '010-1234-5678', '김철수': '010-2222-3333'}

 

print(book["김철수"])

----

010-2222-3333

 

book.keys()
----
dict_keys(['홍길동', '김철수'])

for key in sorted(book.keys()):
    print(key,":",book[key])
-----
김철수 : 010-2222-3333
홍길동 : 010-1234-5678

 

 

mapping

튜플 10 다음에 , 쉼표만 찍는다.

 

튜플을 리스트로 바꾸자.

 

Comments