• + 3 comments

    what does the [1] after split() do??

    • + 0 comments

      .split()returns list. [n] returns n-th element of that list.

      >>> 'hello world'.split()
      ['hello', 'world']
      >>> 'hello world'.split()[1]
      'world'
      
    • + 0 comments

      It's a shortcut of skipping the first input (number of subjects) and going straight for the number of students

    • + 0 comments

      Updated solution is here

      https://www.thecscience.com/2021/08/hackerrank-Zipped-in-python-problem-solution.html