Why is there so much lack of standardization in naming the python3 executable?: https://www.reddit.com/r/Python/comments/6hdsb8/why_is_there_so_much_lack_of_standardization_in/
  
  reddit
  
  Why is there so much lack of standardization in naming... • r/Python
  On Windows command line, `python` refers to whatever `python.exe` was installed recently (be it 2.7 or 3.x). On Linux and Mac, `python` actually...
  OrableDict behavior - which is more intuitive?: https://www.reddit.com/r/Python/comments/6heb4y/orabledict_behavior_which_is_more_intuitive/
  
  reddit
  
  OrableDict behavior - which is more intuitive? • r/Python
  We're having a small debate here. Say I were to implement an OrableDict, that is, a dict that supports the | operator. There are two proposed...
  Mp3 downloader : Download songs by just entering name not need to search and download manually. GitHub link - https://github.com/aman-roy/mp3_downloader: https://www.reddit.com/r/Python/comments/6hei74/mp3_downloader_download_songs_by_just_entering/
  
  GitHub
  
  GitHub - aman-roy/mp3_downloader: A simple python program from which you can download the songs by just entering the name. You…
  A simple python program from which you can download the songs by just entering the name. You can also download by entering a list of name, youtube link or list of youtube links. - aman-roy/mp3_down...
  This is a Python class that will daemonize your Python script so it can continue running in the background.: https://www.reddit.com/r/Python/comments/6hem12/this_is_a_python_class_that_will_daemonize_your/
  
  reddit
  
  This is a Python class that will daemonize your Python... • r/Python
  1 points and 0 comments so far on reddit
  How to Create Your First Static Site with Pelican and Jinja2: https://www.reddit.com/r/Python/comments/6hewu3/how_to_create_your_first_static_site_with_pelican/
  
  reddit
  
  How to Create Your First Static Site with Pelican and... • r/Python
  2 points and 0 comments so far on reddit
  Using spaCy to replace the "topic" of a sentence: https://stackoverflow.com/questions/44375142/using-spacy-to-replace-the-topic-of-a-sentence
  
  Stack Overflow
  
  Using spaCy to replace the "topic" of a sentence
  So as a bit of a thought experiment I coded up a function in python that uses spaCy to find the subject of a news article, then replace it with a noun of choice. The problem is, it doesn't exactly ...
  nltk words corpus does not contain "okay"?: https://stackoverflow.com/questions/44449284/nltk-words-corpus-does-not-contain-okay
  
  Stack Overflow
  
  nltk words corpus does not contain "okay"?
  The NLTK word corpus does not have the phrase "okay", "ok", "Okay"?
> from nltk.corpus import words
> words.words().__contains__("check")
> True
> words.words().__contains__("okay")
&...
  > from nltk.corpus import words
> words.words().__contains__("check")
> True
> words.words().__contains__("okay")
&...
Developers who use spaces make more money than those who use tabs: https://www.reddit.com/r/Python/comments/6hfgv5/developers_who_use_spaces_make_more_money_than/
  
  reddit
  
  Developers who use spaces make more money than those... • r/Python
  1 points and 0 comments so far on reddit
  Python Weekly - Issue 299: http://mailchi.mp/pythonweekly/python-weekly-issue-299
  I created a script that uses a function to print the "Collatz 3n   1" sequence but i cant get why i get the message "none" after the sequence is printed.: https://www.reddit.com/r/Python/comments/6hfovh/i_created_a_script_that_uses_a_function_to_print/
  
  reddit
  
  I created a script that uses a function to print the... • r/Python
  def seq3np1(n): while n != 1: print(n, end=", ") if n % 2 == 0: n = n // 2 else: ...
  Python for ESP8266 and IoT development: https://www.reddit.com/r/Python/comments/6hfur6/python_for_esp8266_and_iot_development/
  
  reddit
  
  Python for ESP8266 and IoT development • r/Python
  I would like to share with you a post about the Zerynth support for ESP8266 boards and the benefits of using Python for IoT development:...
  How to extract a certain character from many string lines?: https://www.reddit.com/r/Python/comments/6hfzbv/how_to_extract_a_certain_character_from_many/
  
  reddit
  
  How to extract a certain character from many string lines? • r/Python
  So some colleagues and I are making this program that extracts certain lines from auth.log file (Ubuntu). We have successfully imported them (the...
  AutoCode - A useless tool to deceive your boss.: https://www.reddit.com/r/Python/comments/6hg21l/autocode_a_useless_tool_to_deceive_your_boss/
  
  reddit
  
  AutoCode - A useless tool to deceive your boss. • r/Python
  2 points and 0 comments so far on reddit
  