You are viewing a single comment's thread. Return to all comments →
.split()returns list. [n] returns n-th element of that list.
>>> 'hello world'.split() ['hello', 'world'] >>> 'hello world'.split()[1] 'world'
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
Zipped!
You are viewing a single comment's thread. Return to all comments →
.split()returns list. [n] returns n-th element of that list.