Re: [Tutor] RAD GUI Development (like Visual Studio/VBA)

2018-06-29 Thread Alan Gauld via Tutor
On 29/06/18 16:05, Glen wrote: > Can someone advise on a RAD, drag and drop style graphical form/dialog > creator? Akin to VBA or Visual Studio that will work with Python? There is nothing even close to the VB GUI builder for Python. That's because Python has to cover many GUI frameworks, VB

Re: [Tutor] CSV Read

2018-06-29 Thread Alan Gauld via Tutor
On 29/06/18 13:18, Sergio Rojas wrote: > # read the whole file > with open(thefilename, 'r') as theFile: contentfile = theFile.read() > > # split the file in lines according to the newline character "\n" > templines = [] > for line in contentfile.splitlines(): >

Re: [Tutor] programmer raspberry

2018-06-29 Thread Alan Gauld via Tutor
On 29/06/18 10:08, Mathieu Sollier wrote: > Bonjour, > J’essaye de programmer un Raspberry pi 3 modèle B+ composé d’un écran tactile > devant notamment allumé mon pc via cette interface. > Auriez vous des conseils pour réaliser cela ? et pour l’interface graphique ? > Cordialement. > Provenance :

[Tutor] programmer raspberry

2018-06-29 Thread Mathieu Sollier
Bonjour, J’essaye de programmer un Raspberry pi 3 modèle B+ composé d’un écran tactile devant notamment allumé mon pc via cette interface. Auriez vous des conseils pour réaliser cela ? et pour l’interface graphique ? Cordialement. Provenance : Courrier pour Windows 10

Re: [Tutor] CSV Read

2018-06-29 Thread Sergio Rojas
On 25/06/18 20:35, Giulia Marcoux wrote: > Hello, > > I am a student learning python, and i am running into some difficulties. I > am tryign to read a csv file that has different delimiters for different > rows: Example: > > Format:V1.1 > Model: R > Step Size: 10mm > Distance: 10cm > Gain: 1000

Re: [Tutor] RAD GUI Development (like Visual Studio/VBA)

2018-06-29 Thread Mats Wichmann
On 06/29/2018 09:05 AM, Glen wrote: > Hey guys, > > Can someone advise on a RAD, drag and drop style graphical form/dialog > creator? Akin to VBA or Visual Studio that will work with Python? > > I currently use the PyCharm IDE, which is fantastic. But I don't have the > time or the skill to

[Tutor] RAD GUI Development (like Visual Studio/VBA)

2018-06-29 Thread Glen
Hey guys, Can someone advise on a RAD, drag and drop style graphical form/dialog creator? Akin to VBA or Visual Studio that will work with Python? I currently use the PyCharm IDE, which is fantastic. But I don't have the time or the skill to craft it all by hand. Thanks,