Kodeclik Logo

Our Programs

Courses

Gifting

Learn More

Schedule

Kodeclik Blog

The next function in Python

Consider an “iterable” data structure such as a string. Iterable refers to the property that the parts of this data structure are organized in an order so you can proceed from the beginning to the end.

Consider a string as follows:

mystring = "Kodeclik"

Because a string is an iterable, you can write a for loop such as below:

for i in mystring:
    print(i)

The output will be:

K
  o
  d
  e
  c
  l
  i
  k

You cannot do this with an integer for instance:

for i in 23:
  print(i)

This code will yield:

Traceback (most recent call last):
File "main.py", line 2, in <module>
  for i in 23:
TypeError: 'int' object is not iterable

As the message clearly indicates, an integer object (in our case, 23) is not iterable.

The next() function applies to iterables such as the “mystring” string above. The next() function takes an iterator as an input. So you need to first create an iterator as follows:

Python next() function

mystring = "Kodeclik"
string_iterator = iter(mystring)
while True:
  letter = next(string_iterator)
  print(letter)

In the above code, we use the iter() function that takes a string and returns an iterator (stored in “string_iterator”). Then we iterate through the string by using the next() function that returns characters one at a time, and print the returned character.

The output will be:

K
o
d
e
c
l
i
k
Traceback (most recent call last):
  File "main.py", line 4, in <module>
    letter = next(string_iterator)
StopIteration

Note what has happened. After indeed iterating and printing the characters in “Kodeclik” we get an error. This is because the iterator has reached the end of the string and we tried to push it beyond the end of the string and thus obtained a “StopIteration” message.

The next() function actually provides a very handy way to determine when you have reached the end of the iteration:

mystring = "Kodeclik"
string_iterator = iter(mystring)
while True:
  letter = next(string_iterator,"stop")
  if (letter == "stop"):
    break
  else:
    print(letter)

In the above code, we call the next() function with an iterator (as before) and now a second argument (called “stop”). This means that when the iterator reaches the end of the iteration next() is expected to return “stop”. Inside the loop, we see if “stop” is returned, in which case we break out of the loop and only print the character otherwise.

Now the output will be:

K
o
d
e
c
l
i
k

As intended, we do not obtain any error message now.

For more Python content, checkout the math.ceil() and math.floor() functions! Also
learn about the math domain error in Python and how to fix it!

Interested in more things Python? Checkout our post on Python queues. Also see our blogpost on Python's enumerate() capability. Also if you like Python+math content, see our blogpost on Magic Squares. Finally, master the Python print function!

Want to learn Python with us? Sign up for 1:1 or small group classes.

Kodeclik sidebar newsletter

Join our mailing list

Subscribe to get updates about our classes, camps, coupons, and more.

About

Kodeclik is an online coding academy for kids and teens to learn real world programming. Kids are introduced to coding in a fun and exciting way and are challeged to higher levels with engaging, high quality content.

Copyright @ Kodeclik 2024. All rights reserved.