You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
range(0, 3) # returns [0, 1, 2]: includes first value but excludes second valuerange(3) # same thing: starting at zero is the defaultrange(0, 5, 2) # returns [0, 2, 4]: third argument specifies the 'stride'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters