Sam;
Were I you, I would look for a local MeetUp that deals with Python, attend
one of their meetings, and talk to one of the folks there. I've learned a
lot from the MeetUp in my area, and there are Python experts in several
fields usually in attendance. They'll be able to help you with your
qu
Thanks all for the help.
Pycharm just posted an update to their Pycharm Edu product, and when I
re-ran the script, everything was fine.
Best,
David
On Tue, May 2, 2017 at 4:27 AM, Alan Gauld via Tutor
wrote:
> On 02/05/17 01:42, David Wolfe wrote:
>
> > I'm working through
Good Evening;
I'm working through Pycharm Edu, and I'm stuck on the following:
phrase = """
It is a really long string
triple-quoted strings are used
to define multi-line strings
"""
first_half = phrase[:len(phrase)//2]
print(first_half)
The instructions are:
The len() function is used to coun
Good Morning;
I'm working with a Python program that requires several dependencies
(Numpy, Matplotlib, and so on). Normally I do all my programing through
Anaconda (using Spyder or a Juypter notebook), so the dependencies are
included, so it's not an issue. So, what I'm wondering is, are the
dep
Good Evening;
I'm collecting both video and force plate data, and I need to be able to
synchronize the two, so I can make some calculations. The video data is at
60hz, and the force plate data is at 1000hz. I don't want to truncate the
force plate data.
So, how do I perform a rate transition (o