Best Python books and online exercise for beginners?: https://www.reddit.com/r/Python/comments/5g8wng/best_python_books_and_online_exercise_for/
reddit
Best Python books and online exercise for beginners? • /r/Python
Hello :) I want to learn Python and this will be my first programming language. Can you guys recomend me something where i can learn Python?
Made a clipboard sharing application paste2box to ease my life: https://www.reddit.com/r/Python/comments/5g8upn/made_a_clipboard_sharing_application_paste2box_to/
reddit
Made a clipboard sharing application paste2box to ease... • /r/Python
Sharing whatever is in my clipboard quickly was something i always needed therefore i made this little application. Application runs in system...
Wrapping the <regex> stdlib in Cython: https://www.reddit.com/r/Python/comments/5g8zsc/wrapping_the_regex_stdlib_in_cython/
reddit
Wrapping the stdlib in Cython • /r/Python
I'm pretty stucked trying to wrap some regular expression functionality from the C++ standard library on Windows. I'm interested in calling the...
Where to find inspiring Python projects for microcontrollers and IoT: https://www.reddit.com/r/Python/comments/5g94r1/where_to_find_inspiring_python_projects_for/
reddit
Where to find inspiring Python projects for... • /r/Python
1 points and 0 comments so far on reddit
Is it possible to show image in Sublime Text 3 output panel?: http://stackoverflow.com/questions/30520381/is-it-possible-to-show-image-in-sublime-text-3-output-panel
Stackoverflow
Is it possible to show image in Sublime Text 3 output panel?
I am writing a sublime text 3 plugin. I have an image (PNG format). I would like to load this image into Sublime Text 3 custom output panel, to show it as a preview. Does anyone have idea how to do...
Did anyone see the ipython console in the movie Arrival?: https://www.reddit.com/r/Python/comments/5g9z8c/did_anyone_see_the_ipython_console_in_the_movie/
reddit
Did anyone see the ipython console in the movie Arrival? • /r/Python
Basically title. I swear there was a short moment when the characters are analyzing their imaging data where I noticed the ipython console in the...
What Python can learn from Haskell (2014 presentation on improving Python): https://www.reddit.com/r/Python/comments/5ganq8/what_python_can_learn_from_haskell_2014/
reddit
What Python can learn from Haskell (2014 presentation... • /r/Python
2 points and 0 comments so far on reddit
Review my code and give me some advices: https://www.reddit.com/r/Python/comments/5gaijt/review_my_code_and_give_me_some_advices/
reddit
Review my code and give me some advices • /r/Python
Hello there! So today I've started to learn OOP with python. I thought that the best way to do that is by creating a simple weather app. I would...
Isn't this counterintuitive behaviour of appending to a list in a list?: https://www.reddit.com/r/Python/comments/5gatvu/isnt_this_counterintuitive_behaviour_of_appending/
reddit
Isn't this counterintuitive behaviour of appending to... • /r/Python
>>> a = [[],]*3 >>> a [[], [], []] >>> a[0].append(10) >>> a [[10], [10], [10]] >>> a[1].append(20) >>> a [[10,...
Program finished but need to refine/tweak: https://www.reddit.com/r/Python/comments/5gbg8h/program_finished_but_need_to_refinetweak/
reddit
Program finished but need to refine/tweak • /r/Python
http://pastebin.com/UuZhn04U My program works. However it isnt quite as polished as Id like. 1. I am not supposed to use the .count function...
How difficult is it too find a part time contract job or summer work programming in python?: https://www.reddit.com/r/Python/comments/5gbz27/how_difficult_is_it_too_find_a_part_time_contract/
reddit
How difficult is it too find a part time contract job... • /r/Python
So I am a tech / engineering teacher full time. I am learning python currently. I would like to study until I am good enough to start to do...
Introducing Rhymebase: An API that queries a database of rhymes in music videos: https://www.reddit.com/r/Python/comments/5gcdsq/introducing_rhymebase_an_api_that_queries_a/
reddit
Introducing Rhymebase: An API that queries a database... • /r/Python
1 points and 0 comments so far on reddit
What is the fastest way to make a numpy.ndarray hashable?: https://www.reddit.com/r/Python/comments/5gcq4o/what_is_the_fastest_way_to_make_a_numpyndarray/
reddit
What is the fastest way to make a numpy.ndarray hashable? • /r/Python
Right now I'm using x.tostring() but I'm looking for something faster.