Need help writing code that finds duplicate words in a text file and then identifies them and says the line the were found on in the file.: https://www.reddit.com/r/Python/comments/632els/need_help_writing_code_that_finds_duplicate_words/
reddit
Need help writing code that finds duplicate words in a... • r/Python
So far I have this: import string input_file = input("Enter file name: ") with open(input_file, "r+") as myFile: text =...
Need some advice about learning python.: https://www.reddit.com/r/Python/comments/632ich/need_some_advice_about_learning_python/
reddit
Need some advice about learning python. • r/Python
Tl;dr: Should I learn python to scrape through a messenger group chat and compile messages with certain attributes (length of message) into a...
BioPandas v0.2 -- A Python package for working with molecular structures in DataFrames now with MOL2 support: https://www.reddit.com/r/Python/comments/632jff/biopandas_v02_a_python_package_for_working_with/
reddit
BioPandas v0.2 -- A Python package for working with... • r/Python
1 points and 0 comments so far on reddit
What is the coolest program you have written with sockets in python?: https://www.reddit.com/r/Python/comments/632nio/what_is_the_coolest_program_you_have_written_with/
reddit
What is the coolest program you have written with... • r/Python
I have been a huge fan of socket programming for a little while and want to know what other people have accomplished using the `socket`...
regex select not commented statements: http://stackoverflow.com/questions/43141102/regex-select-not-commented-statements
Stackoverflow
regex select not commented statements
echo ''; print_r(1); echo ''; <- select this
echo ''; print_r($temp); echo ''; <- select this without space
// echo ''; print_r($...
echo ''; print_r($temp); echo ''; <- select this without space
// echo ''; print_r($...
Redirect an html webpage upon user click: https://www.reddit.com/r/Python/comments/6348b2/redirect_an_html_webpage_upon_user_click/
reddit
Redirect an html webpage upon user click • r/Python
I initially posted this in r/html but was told I should post it here instead. Im trying to redirect a certain page hosted on a local server to a...
Can We Use Mixture Models to Predict Market Bottoms?: https://www.reddit.com/r/Python/comments/634b3n/can_we_use_mixture_models_to_predict_market/
reddit
Can We Use Mixture Models to Predict Market Bottoms? • r/Python
1 points and 0 comments so far on reddit
Good places to practice Python for specific use: https://www.reddit.com/r/Python/comments/634kej/good_places_to_practice_python_for_specific_use/
reddit
Good places to practice Python for specific use • r/Python
So I'm a freshman in college, over halfway done with my first intro to CS class and absolutely loving it. I'm hoping to switch to CS a year from...
A Python Google-YouTube History Analytics, which reads your history data you get from Google and provide analytics about your searches on Google, YouTube and YouTube watch history. It provides number of counts for the term you searched for, year/month wise.: https://www.reddit.com/r/Python/comments/634nu6/a_python_googleyoutube_history_analytics_which/
reddit
A Python Google-YouTube History Analytics, which reads... • r/Python
1 points and 0 comments so far on reddit
Attempt to coordinate /r/python on /r/place through pip package: https://www.reddit.com/r/Python/comments/635cl6/attempt_to_coordinate_rpython_on_rplace_through/
reddit
Attempt to coordinate /r/python on /r/place through pip... • r/Python
Hey guys, we need to be more organized if we want to make a difference on /r/place :) The idea in this thread is to draw the python logo, [at...
Ranking the Negativity of Black Mirror Epiosdes with VADER Sentiment Analysis in Python [xpost from /r/blackmirror]: https://www.reddit.com/r/Python/comments/635ds3/ranking_the_negativity_of_black_mirror_epiosdes/
reddit
Ranking the Negativity of Black Mirror Epiosdes with... • r/Python
1 points and 0 comments so far on reddit
Python Development: 7 Libraries to Look For in 2017: https://www.reddit.com/r/Python/comments/635k16/python_development_7_libraries_to_look_for_in_2017/
reddit
Python Development: 7 Libraries to Look For in 2017 • r/Python
1 points and 0 comments so far on reddit
Anaconda Navigator won't launch - Need help: https://www.reddit.com/r/Python/comments/6362ym/anaconda_navigator_wont_launch_need_help/
reddit
Anaconda Navigator won't launch - Need help • r/Python
Hi everyone, I'm currently trying to learn Python. I've started doing the Python course for beginners on coursera, but grew tired of using...
Definitive Flask extension for building REST APIs: https://www.reddit.com/r/Python/comments/636eab/definitive_flask_extension_for_building_rest_apis/
reddit
Definitive Flask extension for building REST APIs • r/Python
1 points and 0 comments so far on reddit
Python coding interview challenges: https://github.com/donnemartin/coding-challenges
GitHub
donnemartin/interactive-coding-challenges
interactive-coding-challenges - Continually updated, interactive, test-driven Python coding interview challenges (algorithms and data structures). Includes Anki Flashcards.
Python import from parent directory and keep flake8 happy: http://stackoverflow.com/questions/42825138/python-import-from-parent-directory-and-keep-flake8-happy
Stack Overflow
Python import from parent directory and keep flake8 happy
This import works fine, but feels dirty in a few ways. Mainly that it uses a specific number in the slice* to get the parent path, and that it annoys the flake8 linter.
import os
import sys
sys.path.
import os
import sys
sys.path.
Web Scraping with Selenium Python [Twitter Instagram]: http://stackoverflow.com/questions/43033378/web-scraping-with-selenium-python-twitter-instagram
Stack Overflow
Web Scraping with Selenium Python [Twitter + Instagram]
I am trying to web scrape both Instagram and Twitter based on geolocation.
I can run a query search but I am having challenges in reloading the web page to to more and store the fields to data-fram...
I can run a query search but I am having challenges in reloading the web page to to more and store the fields to data-fram...
In Python, how do I determine if an object is iterable?: http://stackoverflow.com/questions/1952464/in-python-how-do-i-determine-if-an-object-is-iterable
Stack Overflow
In Python, how do I determine if an object is iterable?
Is there a method like isiterable? The only solution I have found so far is to call
hasattr(myObj, '__iter__')
But I am not sure how fool-proof this is.
hasattr(myObj, '__iter__')
But I am not sure how fool-proof this is.