[파이썬] binding, split


[파이썬] binding, split

1. binding x = "Hello World!"와 같이 변수를 지정하는 행위를 바인딩이라고 함 2. split method str.split(sep=None, maxsplit=-1) Return a list of the words in the string, using sep as the delimiter string. If maxsplit is given, at most maxsplit splits are done (thus, the list will have at most maxsplit+1 elements). If maxsplit is not specified or -1, then there is no limit on the number of splits (all possible splits are made). If sep is given, consecutive delimiters are not grouped together and are deemed to delimit e...


#binding #split #파이썬

원문링크 : [파이썬] binding, split