I have these values which I store in a:
a = ((1.425, 4.82145395112958, 0.0656498375731458)
(1.39716316090366, 7.2, 0.102480129941483)
(7.425, 4.82145395112958, 0.0656498375731458)
(7.39716316090366, 7.2, 0.102480129941483)
(7.425, -0.928546048870416, 0.0656498375731458)
(7.39716316090366, 0.95, 0.102480129941483)
(1.425, -0.928546048870416, 0.0656498375731458)
(1.39716316090366, 0.95, 0.102480129941483))what I'm doing:print a[2]Gives:
Output:0.0656498375731458
0.102480129941483
0.0656498375731458
0.102480129941483
0.0656498375731458
0.102480129941483
0.0656498375731458
0.102480129941483I only need this single value to print: 0.0656498375731458
