Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- mytuple = ("Alfa Romeo", "Bugatti", "Chevrolet", "Dacia") #these car names besides Chevrolet are found in a similar script to this I made https://pastebin.com/qPiCSyVD
- myit = iter(mytuple)
- print(next(myit))
- print(next(myit))
- print(next(myit))
- print(next(myit))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement