Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. GeneralUtilities`ConstantIterator[5]
  2.  
  3. GeneralUtilities`KeyValueIterator[<|a -> x, b -> y, c -> z|>]
  4.  
  5. >>> string='FhC'
  6. >>> it=iter(string)
  7. >>> next(it)
  8. 'F'
  9. >>> next(it)
  10. 'h'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement