Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Swift Basics (retired) Control Flow For-In Loop

for number in 1..<10 excludes 10. However, doing 1<..10 to exclude 1 does not work. How does one do that?

for number in 1..<10 excludes 10. However, doing 1<..10 to exclude 1 does not work. How does one do that?

3 Answers

Martin Wildfeuer
PLUS
Martin Wildfeuer
Courses Plus Student 11,071 Points

There is no way of excluding the first value like the last, afaik. One thing you can do, though, is

for number in 1+1...10
Greg Kitchin
Greg Kitchin
31,522 Points

The first value is just the starting point, the final value the end point. It's possible to do

for counter 2...10 { println(counter) }

Aarj Jain
Aarj Jain
706 Points

I would say always go for the ...(triple dot) type, as it makes it easier for you understand the range! Though its just me :)