Python_/Beginner
파이썬이산수학> Mapping-사전생성하기
Jr.Kelly
2017. 9. 12. 21:07
사전을 생성하기 전에 알아야할 메소드
String split() method
EX
str = 'yeseul is studying python'
print(str.split( ))
Split method return List , So result is..
['yeseul','is','studying','python']