Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. """
  2. Advanced slicing
  3. """
  4.  
  5. # 応用的な使い方1
  6. # third parameterはstep size.この例ではstep size = 2
  7. s = 'Python is Fun!'
  8. s[1:12:2]
  9. # ---> 'yhni u'
  10.  
  11. # 応用的な使い方2
  12. # we're asking for the full string s (from index 0 through 13), with a step size of 2
  13. s[::2]
  14. # ---> 'Pto sFn'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement