Re: Python Data base help

2016-10-17 Thread Brandon McCaig
(Apologies for the old thread reviving) On Sun, Oct 09, 2016 at 09:27:11PM +0200, Irmen de Jong wrote: > What is your 'database'? > >From the little information you provided it seems that it is just a text > >file where > every drone measurement is on a line. So simply read every line and check

Re: Python Data base help

2016-10-09 Thread breamoreboy
On Sunday, October 9, 2016 at 7:56:57 PM UTC+1, Risat Haque wrote: > Hey, i have a data base filled with numbers from a recent drone flight. IT > contains, alt, long, lat, and time. > In python, i want to ask the user to put in a time : > askTime = (input("Choose a time (HourMinSec):")) > >

Re: Python Data base help

2016-10-09 Thread Irmen de Jong
On 9-10-2016 20:56, Risat Haque wrote: > Hey, i have a data base filled with numbers from a recent drone flight. IT > contains, alt, long, lat, and time. > In python, i want to ask the user to put in a time : > askTime = (input("Choose a time (HourMinSec):")) > > With this, I need it to search

Python Data base help

2016-10-09 Thread Risat Haque
Hey, i have a data base filled with numbers from a recent drone flight. IT contains, alt, long, lat, and time. In python, i want to ask the user to put in a time : askTime = (input("Choose a time (HourMinSec):")) With this, I need it to search through the entire data base to find that number.