What Physics Engine should I use to make and visualize a "car" sort of thing?: https://www.reddit.com/r/Python/comments/5zm7iw/what_physics_engine_should_i_use_to_make_and/
reddit
What Physics Engine should I use to make and visualize... • r/Python
I am trying to make something like BoxCar2D (http://boxcar2d.com/about.html), but I don't want to make my own physics engine or anything. I've...
Did datetime.datetime.strftime() change?: https://www.reddit.com/r/Python/comments/5zm8eq/did_datetimedatetimestrftime_change/
reddit
Did datetime.datetime.strftime() change? • r/Python
I was running a script I wrote a month or so ago and noticed it was giving me a %i instead of the hour in 12 hour format and a long string of...
virtualenv pip vs using yum repositories for module: https://www.reddit.com/r/Python/comments/5zmzlz/virtualenv_pip_vs_using_yum_repositories_for/
reddit
virtualenv + pip vs using yum repositories for module • r/Python
Hi all, I have a discussion tomorrow with coworkers at $dayjob about whether using yum repositories to install python modules is the right way...
Not Your Father’s Python: Amazing Powerful Frameworks: https://www.reddit.com/r/Python/comments/5zn7w0/not_your_fathers_python_amazing_powerful/
reddit
Not Your Father’s Python: Amazing Powerful Frameworks • r/Python
1 points and 0 comments so far on reddit
[help] real world problems solving with numpy: https://www.reddit.com/r/Python/comments/5znhjq/help_real_world_problems_solving_with_numpy/
reddit
[help] real world problems solving with numpy • r/Python
Hi! on internet exist a lot of tutorials but not unusual numpy cases to use. Its for a classroom and i dont want to show only a array sum. I...
Stream stock mentions/sentiment on Twitter in realtime!: https://www.reddit.com/r/Python/comments/5znzui/stream_stock_mentionssentiment_on_twitter_in/
reddit
Stream stock mentions/sentiment on Twitter in realtime! • r/Python
1 points and 0 comments so far on reddit
Can named arguments be used with Python enums?: http://stackoverflow.com/questions/26691784/can-named-arguments-be-used-with-python-enums
Stackoverflow
Can named arguments be used with Python enums?
Example:
class Planet(Enum):
MERCURY = (mass: 3.303e+23, radius: 2.4397e6)
def __init__(self, mass, radius):
self.mass = mass # in kilograms
self.radius = radius ...
class Planet(Enum):
MERCURY = (mass: 3.303e+23, radius: 2.4397e6)
def __init__(self, mass, radius):
self.mass = mass # in kilograms
self.radius = radius ...
Today I submitted my very first open source package and I couldn't be more happier.: https://www.reddit.com/r/Python/comments/5zm82c/today_i_submitted_my_very_first_open_source/
reddit
Today I submitted my very first open source package and... • r/Python
1 points and 0 comments so far on reddit
Allow User to Schedule Emails with Celery and Rabbit in Django: https://www.reddit.com/r/Python/comments/5zp97x/allow_user_to_schedule_emails_with_celery_and/
reddit
Allow User to Schedule Emails with Celery and Rabbit in... • r/Python
Hi! So I want my users to be able to schedule when the system should send emails to them and to their customers. I'm using Celery and Rabbit....
Running wxpython app in cygwin/X: http://stackoverflow.com/questions/42782246/running-wxpython-app-in-cygwin-x
Stackoverflow
Running wxpython app in cygwin/X
I have installed wxpython for python2.7 from the standard cygwin repos (64-bit, Win 7). However when I start the Cygwin X server and try to run the most simple "Hello World" script from wxpython
How to use Python to scrape your course schedules from a Word table and create an iCalender file: https://www.reddit.com/r/Python/comments/5zpn5g/how_to_use_python_to_scrape_your_course_schedules/
reddit
How to use Python to scrape your course schedules from... • r/Python
1 points and 0 comments so far on reddit
XML how to iterate to end of root element: https://www.reddit.com/r/Python/comments/5zpoyu/xml_how_to_iterate_to_end_of_root_element/
reddit
XML how to iterate to end of root element • r/Python
Hi, I am pretty new at this and I am wondering how I can iterate to the end of an XML tree for x in xrange(0,len(value)): for a in...
Need help with basic Turtle Graphics: https://www.reddit.com/r/Python/comments/5zpw6b/need_help_with_basic_turtle_graphics/
reddit
Need help with basic Turtle Graphics • r/Python
I am currently in school and am new to the python coding, I am trying to draw a pentagram and fill it and im lost after the circle and for some...
How to disgredard all punctuation in this code?: https://www.reddit.com/r/Python/comments/5zprkj/how_to_disgredard_all_punctuation_in_this_code/
reddit
How to disgredard all punctuation in this code? • r/Python
I've written the code below and need it to disregard all punctuation in the sentence input by the user. In code I have written before I used: ...