Skip to content

Instantly share code, notes, and snippets.

@XinyueZ
Last active May 30, 2022 09:24
Show Gist options
  • Save XinyueZ/9c4d072e883cec4f95fcdab4d34611eb to your computer and use it in GitHub Desktop.
Save XinyueZ/9c4d072e883cec4f95fcdab4d34611eb to your computer and use it in GitHub Desktop.
Python tips: list access even and odd position
import numpy as np
random_np = np.random.uniform(size=(10))
print("random_np: ", random_np)
print("odd index:", random_np[1::2])
print("even index:", random_np[::2])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment