Skip to content

Instantly share code, notes, and snippets.

@pjastr
Last active April 11, 2019 13:40
Show Gist options
  • Save pjastr/19a77e979bf9b3a187a4b8b9c4120531 to your computer and use it in GitHub Desktop.
Save pjastr/19a77e979bf9b3a187a4b8b9c4120531 to your computer and use it in GitHub Desktop.
import numpy as np

imiona = np.array(["Anna", "Zofia", "Sylwia", "Katarzyna", "Teresa", "Tomasz", "Cezary", "Zenon", "Filip", "Adrian"])
wiek = np.array([21, 40, 13, 31, 34, 14, 13, 28, 20, 15])
plec = np.array(["K", "K", "K", "K", "K", "M", "M", "M", "M", "M"]);
waga = np.array([65, 80, 64, 69, 74, 61, 66, 61, 69, 77])
wzrost = np.array([179, 179, 151, 177, 170, 157, 151, 153, 160, 160])
okulary = np.array([False, True, False, True, False, True, False, True, False, True])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment