Code the blocks - interactive Python tutorial based on a 3D world where you place blocks programmatically: https://www.reddit.com/r/Python/comments/7z5l5a/code_the_blocks_interactive_python_tutorial_based/
reddit
Code the blocks - interactive Python tutorial based on... • r/Python
2 points and 0 comments so far on reddit
PyQt5 Application Boilerplate: Resources, forms, multilanguage, compilation, docs, linting...: https://www.reddit.com/r/Python/comments/7z5omm/pyqt5_application_boilerplate_resources_forms/
reddit
PyQt5 Application Boilerplate: Resources, forms,... • r/Python
4 points and 1 comments so far on reddit
Massive out of band update to Safety DB. There's now an advisory for every vulnerability available, even the ancient ones lots and lots of CVE mappings done by hand.: https://www.reddit.com/r/Python/comments/7z6j2k/massive_out_of_band_update_to_safety_db_theres/
reddit
Massive out of band update to Safety DB. There's now an... • r/Python
0 points and 1 comments so far on reddit
20 free copies of The Big Book of Coding Interviews in Python for US Residents: https://www.reddit.com/r/Python/comments/7z6gkl/20_free_copies_of_the_big_book_of_coding/
reddit
20 free copies of The Big Book of Coding Interviews in... • r/Python
2 points and 0 comments so far on reddit
Why is Python used so much more than Ruby?: https://www.reddit.com/r/Python/comments/7z6bfo/why_is_python_used_so_much_more_than_ruby/
reddit
Why is Python used so much more than Ruby?
Hello, I'm thinkink about learning new scripting language, Ruby or Python. I'm going to use it for creating non-web applications, for Windows...
What are the differences between a cpdef and a cdef wrapped in a def?: https://stackoverflow.com/questions/48864631/what-are-the-differences-between-a-cpdef-and-a-cdef-wrapped-in-a-def
Stack Overflow
What are the differences between a cpdef and a cdef wrapped in a def?
In the Cython docs there is an example where they give two ways of writing a C/Python hybrid method. An explicit one with a cdef for fast C access and a wrapper def for access from Python:
cdef cl...
cdef cl...
Webinar for pytest in PyCharm tomorrow (2/22 4PM GMT). [No affiliation, just PyCharm user]: https://www.reddit.com/r/Python/comments/7z6xay/webinar_for_pytest_in_pycharm_tomorrow_222_4pm/
reddit
Webinar for pytest in PyCharm tomorrow (2/22 4PM GMT).... • r/Python
1 points and 1 comments so far on reddit
A CNN that can understand 10 signs or hand gestures.: https://www.reddit.com/r/Python/comments/7z6z2z/a_cnn_that_can_understand_10_signs_or_hand/
reddit
A CNN that can understand 10 signs or hand gestures. • r/Python
1 points and 0 comments so far on reddit
Django strange SlugField validation, error not raised before clean(), uncleaned data returned: https://stackoverflow.com/questions/48863201/django-strange-slugfield-validation-error-not-raised-before-clean-uncleaned
Stackoverflow
Django strange SlugField validation, error not raised before clean(), uncleaned data returned
django 2.0
I have a django model, with a slug as primary key
from django.core.validators import validate_slug
class MyModel(models.Model):
# with slug field
slug_field = models.SlugField(
I have a django model, with a slug as primary key
from django.core.validators import validate_slug
class MyModel(models.Model):
# with slug field
slug_field = models.SlugField(
Algorithm to find the most repetitive (not the most common) sequence in a string: https://stackoverflow.com/questions/48870253/algorithm-to-find-the-most-repetitive-not-the-most-common-sequence-in-a-string
Stackoverflow
Algorithm to find the most repetitive (not the most common) sequence in a string
I am looking for an algorithm (possibly implemented in Python) able to find the most REPETITIVE sequence in a string. Where for REPETITIVE, I mean any combination of chars that is repeated over and...
Guido Van Rossum one of three Computer History Museum honorees for 2018: https://www.reddit.com/r/Python/comments/7z7cmn/guido_van_rossum_one_of_three_computer_history/
reddit
Guido Van Rossum one of three Computer History Museum... • r/Python
22 points and 0 comments so far on reddit
Let's Implement a Gaussian Naive Bayes Classifier in Python: https://www.antoniomallia.it/lets-implement-a-gaussian-naive-bayes-classifier-in-python.html
Antonio Mallia
Let’s implement a Gaussian Naive Bayes classifier in Python
One of the simplest yet effective algorithm what should be tried to solve the classification problem in s Naive Bayes classifier. It is a probabilistic method which is based on the Bayes’ theorem with the naive independence assumptions between the input attributes.
matplotlib two different colors in the same annotate: https://stackoverflow.com/questions/24108063/matplotlib-two-different-colors-in-the-same-annotate
Stack Overflow
matplotlib two different colors in the same annotate
I am trying to create a figure in python and make is so that the same annonate text will have two colors, half of the annonate will be blue and the other half will be red.
I think the code explain
I think the code explain