Discussion:
[Tutor] Help
a***@yahoo.in
2015-07-24 16:37:00 UTC
Permalink
Dear Pythonist I wanted to develop any application for my college project using python .I have the basic of the language and wanted to develop any real time software or application .I am not getting any help or idea you know i am just getting a little unsure java is popular and my college classmates are using java .I don't know please help me out from this situation?
_______________________________________________
Tutor maillist - ***@python.org
To unsubscribe or change subscription options:
https://mai
Mark Lawrence
2015-07-24 20:52:40 UTC
Permalink
Dear Pythonist I wanted to develop any application for my college project using python .I have the basic of the language and wanted to develop any real time software or application .I am not getting any help or idea you know i am just getting a little unsure java is popular and my college classmates are using java .I don't know please help me out from this situation?
You will not want to be writing real time software in Python, unless
it's the control system for the steering system on a super tanker. This
is very much the domain of languages like C, C++ or Java. There may be
other more modern languages but I don't follow too closely so you'll
have to do further research. Here's a starter anyway
http://stackoverflow.com/questions/697916/what-languages-are-used-for-real-time-systems-programming.
And I've just remembered http://www.erlang.org/
--
My fellow Pythonistas, ask not what our language can do for you, ask
what you can do for our language.

Mark Lawrence

_______________________________________________
Tutor maillist - ***@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor
Claudia Angle
2015-07-24 18:49:49 UTC
Permalink
I installed python but I am unable to decompress the pyserial library. I
need a free and safe program as it is my school comuter. I am using the
irobot Create (Roomba ).
_______________________________________________
Tutor maillist - ***@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor
Alan Gauld
2015-07-24 21:33:47 UTC
Permalink
I wanted to develop any application for my college project using python.
OK, That is easy enough, what kind of application do you have in mind?
An office tool? A game? A web site? There are lots of possibilities.
I have the basic of the language and wanted to develop any
real time software or application .
Real Time software is extremely hard to write well in any language.
And genuine real-time is almost impossible in Python (and most
other interpreted languages). Pseudo Real-Time is perhaps do-able.
What do you mean by real-time? Do you have an example?
Controlling some hardware for example? (How fast does the
hardware respond - seconds, milliseconds, microseconds, less?)
Then we can decide whether Python is even worth considering.
(Even if it isn't suitable for the real-time bits it may be fine
for other parts of the application such as the user interface)

Or maybe you are using real-time to mean something different
to that? In which case the opportunities may be greater. For
example if you just mean something that responds to user
commands while the user waits (like a word processor say)
then its a very different story.
I am not getting any help or idea you know i am just getting
a little unsure java is popular and my college classmates
are using java.
I normally wouldn't consider Java good for real real-time
either, but it is way better than Python for that. But there
are many other options too.

Can you fill us in a bit more on your background - other programming
skills? project ideas? OS and hardware you are using? timescale
available? Budget, if applicable. Anything of that sort will help.
--
Alan G
Author of the Learn to Program web site
http://www.alan-g.me.uk/
http://www.amazon.com/author/alan_gauld
Follow my photo-blog on Flickr at:
http://www.flickr.com/photos/alangauldphotos


_______________________________________________
Tutor maillist - ***@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor
Loading...