* map 함수 사용법 map(, ) # iterable : list, tuple, dictionary, str map 예제- 실수형으로 된 a의 요소를, 정수형으로 바꾸기. # map(함수, 리스트 or 튜플의 변수명) a = [1.5 , 1.9 , 13.5] b = list(map(int, a)) print(b) map 예제 - 리스트 요소에 3씩 곱해주기. a = [3,4,5,2,4,3,5,13,91] def mul(n): n *=3 return n print(list(map(mul,a))) *split split 예제 - 문자열 공백으로 나누기 x = "i am student, you are a girl" b= x.split() # 괄호안에 어떤 문자를 기준으로 분리할지 적습니다. print(b)..
파이썬 (Python) 문자 입력, map(), split() , sys.stdin.readline() , rstrip()
* map 함수 사용법 map(, ) # iterable : list, tuple, dictionary, str map 예제- 실수형으로 된 a의 요소를, 정수형으로 바꾸기. # map(함수, 리스트 or 튜플의 변수명) a = [1.5 , 1.9 , 13.5] b = list(map(int, a)) print(b) map 예제 - 리스트 요소에 3씩 곱해주기. a = [3,4,5,2,4,3,5,13,91] def mul(n): n *=3 return n print(list(map(mul,a))) *split split 예제 - 문자열 공백으로 나누기 x = "i am student, you are a girl" b= x.split() # 괄호안에 어떤 문자를 기준으로 분리할지 적습니다. print(b)..
2020.01.21