Last active
December 19, 2017 00:31
-
-
Save BlogBlocks/2778922902bedb309d76c8c3999e524a 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
| # Created for Jupyter Notebook | |
| #learn by experimenting | |
| import matplotlib.pyplot as plt | |
| data=[(215.42,316.31,416.5),(327.56,428.13,338.0),(322.36,448.46,372.7)] | |
| print"A:",([data[0][1]]),\ | |
| "\nB:", (data[0][0]),\ | |
| "\nC:", (data[0][2]),\ | |
| "\nD:", (data[1][1]),\ | |
| "\nE:", (data[2]),\ | |
| "\nF:", (data[2][2]) |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
made public