Processing Strings (writing inputs for certain strings): https://www.reddit.com/r/Python/comments/a0jy2u/processing_strings_writing_inputs_for_certain/
reddit
r/Python - Processing Strings (writing inputs for certain strings)
1 vote and 0 comments so far on Reddit
(A follow up to the unfortunate thread from the weekend) As requested by more than a few we share the Mirumee Python Wallpapers pack in different resolutions. Much ♥ from our design team for all the good words!: https://www.reddit.com/r/Python/comments/a0jvs1/a_follow_up_to_the_unfortunate_thread_from_the/
reddit
(A follow up to the unfortunate thread from the weekend) As...
Posted in r/Python by u/mir3 • 205 points and 15 comments
What is the best Python text editor out there as of now? And why?: https://www.reddit.com/r/Python/comments/a0kd1w/what_is_the_best_python_text_editor_out_there_as/
reddit
r/Python - What is the best Python text editor out there as of now? And why?
0 votes and 3 comments so far on Reddit
Python interview questions and answers (useful for beginners): https://www.reddit.com/r/Python/comments/a0kfrs/python_interview_questions_and_answers_useful_for/
reddit
r/Python - Python interview questions and answers (useful for beginners)
1 vote and 0 comments so far on Reddit
How to detect linear graphs within data in a DataFrame?: https://stackoverflow.com/questions/53435573/how-to-detect-linear-graphs-within-data-in-a-dataframe
Stack Overflow
How to detect linear graphs within data in a DataFrame?
I'm trying to detect linear graphs within certain data in a DataFrame. There may be many linear graphs portions within the data. I started my aproach using ransac based on Robust linear model estim...
Releasing ptop 1.0 : An awesome task manager written using Python: https://www.reddit.com/r/Python/comments/a0l1ch/releasing_ptop_10_an_awesome_task_manager_written/
reddit
r/Python - Releasing ptop 1.0 : An awesome task manager written using Python
25 votes and 6 comments so far on Reddit
Is Teamtreehouse good for learning Python? If not what are the best ways for a beginner to learn it?: https://www.reddit.com/r/Python/comments/a0lb30/is_teamtreehouse_good_for_learning_python_if_not/
reddit
r/Python - Is Teamtreehouse good for learning Python? If not what are the best ways for a beginner to learn it?
1 vote and 0 comments so far on Reddit
A true real-time chat app in 23 lines of Python and 35 lines of JavaScript (0 dependencies) thanks to the Mercure protocol: https://www.reddit.com/r/Python/comments/a0llv8/a_true_realtime_chat_app_in_23_lines_of_python/
reddit
r/Python - A true real-time chat app in 23 lines of Python and 35 lines of JavaScript (0 dependencies) thanks to the Mercure protocol
1 vote and 0 comments so far on Reddit
Besides Reddit, which are your blogs/website of reference to be updated with news about Python and its different fields (all of them)?: https://www.reddit.com/r/Python/comments/a0cmec/besides_reddit_which_are_your_blogswebsite_of/
reddit
r/Python - Besides Reddit, which are your blogs/website of reference to be updated with news about Python and its different fields…
1 vote and 0 comments so far on Reddit
Would you allow me to share with you something I’m working on?: https://www.reddit.com/r/Python/comments/a0liv8/would_you_allow_me_to_share_with_you_something_im/
reddit
r/Python - Would you allow me to share with you something I’m working on?
2 votes and 0 comments so far on Reddit
Python dataclass from dict: https://stackoverflow.com/questions/53376099/python-dataclass-from-dict
Stack Overflow
Python dataclass from dict
The standard library in 3.7 can recursively convert a dataclass into a dict (example from the docs):
from dataclasses import dataclass, asdict
from typing import List
@dataclass
class Point:
...
from dataclasses import dataclass, asdict
from typing import List
@dataclass
class Point:
...