Last active
August 22, 2018 19:38
-
-
Save argenisleon/bed9e772b8dd2f7ec75f02999f4ba172 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| df = op.create.df( | |
| [ | |
| ("names", "str", True), | |
| ("height", "float", True), | |
| ("function", "str", True), | |
| ("rank", "int", True), | |
| ], | |
| [ | |
| ("bumbl#ebéé ", 17.5, "Espionage", 7), | |
| ("Optim'us", 28.0, "Leader", 10), | |
| ("ironhide&", 26.0, "Security", 7), | |
| ]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment