Generating a time dependent function, Help!: https://www.reddit.com/r/Python/comments/7d6okd/generating_a_time_dependent_function_help/
reddit
Generating a time dependent function, Help! • r/Python
Im writing a script to run some lab electronics. I have a simple variable whose numerical value sets the voltage in my equipment. Now, I need a...
Can you help me? I don't know what did i do wrong.: https://www.reddit.com/r/Python/comments/7d6jze/can_you_help_me_i_dont_know_what_did_i_do_wrong/
reddit
Can you help me? I don't know what did i do wrong. • r/Python
def div(num1, num2): return num1 / num2 def sub(num1,num2): return num1 - num2 def add(num1,num2): return num1 + num2 def...
I wrote an article for Florida CPA Today on why accountants should learn Python: https://www.reddit.com/r/Python/comments/7d6i0z/i_wrote_an_article_for_florida_cpa_today_on_why/
reddit
I wrote an article for Florida CPA Today on why... • r/Python
43 points and 1 comments so far on reddit
Can someone help me translate this Perl snippet into Python 3? [x/post from r/learnpython]: https://www.reddit.com/r/Python/comments/7d6xgo/can_someone_help_me_translate_this_perl_snippet/
reddit
Can someone help me translate this Perl snippet into... • r/Python
I am trying to rewrite an old Perl script into Python to help myself learn Python and also because it will probably be useful to my workplace as...
Catching Python exceptions in a Powershell wrapper: https://www.reddit.com/r/Python/comments/7d6yhs/catching_python_exceptions_in_a_powershell_wrapper/
reddit
Catching Python exceptions in a Powershell wrapper • r/Python
Hi all. Not sure if this belongs in the posh or python community, but here goes. I'm a python beginner but I've been writing posh for a couple...
Numpy dropping Python 2.7: https://github.com/numpy/numpy/blob/master/doc/neps/dropping-python2.7-proposal.rst
Ask Reddit: Python devs who made the switch to others languages, how much do you miss [insert_favorite_python_feature]?: https://www.reddit.com/r/Python/comments/7d7k3o/ask_reddit_python_devs_who_made_the_switch_to/
reddit
Ask Reddit: Python devs who made the switch to others... • r/Python
Hi there! Python devs who made the switch to other languages (but somehow still hang out on /r/python), how much do you miss decorators, context...
Dropbox releases PyAnnotate -- auto-generate type annotations for mypy: https://www.reddit.com/r/Python/comments/7d7aqw/dropbox_releases_pyannotate_autogenerate_type/
reddit
Dropbox releases PyAnnotate -- auto-generate type... • r/Python
170 points and 29 comments so far on reddit
Error using Google Stackdriver Logging in App Engine Standard python: https://stackoverflow.com/questions/47223678/error-using-google-stackdriver-logging-in-app-engine-standard-python
Stackoverflow
Error using Google Stackdriver Logging in App Engine Standard python
My Stack:
Google App Engine Standard
Python (2.7)
Goal:
To create named logs in Google Stackdriver Logging, https://console.cloud.google.com/logs/viewer
Docs - Stackdriver Logging:
https://
Google App Engine Standard
Python (2.7)
Goal:
To create named logs in Google Stackdriver Logging, https://console.cloud.google.com/logs/viewer
Docs - Stackdriver Logging:
https://
Free course on Udemy: Build a Django eCommerce Web App (x-post): https://www.reddit.com/r/Python/comments/7d7ulm/free_course_on_udemy_build_a_django_ecommerce_web/
reddit
Free course on Udemy: Build a Django eCommerce Web App... • r/Python
1 points and 0 comments so far on reddit
Guessing Game Count Number of Same Entries: https://www.reddit.com/r/Python/comments/7d8111/guessing_game_count_number_of_same_entries/
reddit
Guessing Game Count Number of Same Entries • r/Python
Hi! I need a little bit of help with my assignment. I'm instructed to make a guessing game, where I tell the user if they guessed too high or too...
The Complete Angular 5 Essentials Course For Beginners and Many More Free Courses Coupons: https://www.reddit.com/r/Python/comments/7d87bu/the_complete_angular_5_essentials_course_for/
reddit
The Complete Angular 5 Essentials Course For Beginners... • r/Python
#======>FREE UDEMY GAME DEVELOPMENT COUPONS <====== Find Your Life Purpose and Maximize Your...
Python Vs. R for statistical/machine learning for big data?: https://www.reddit.com/r/Python/comments/7d861a/python_vs_r_for_statisticalmachine_learning_for/
reddit
Python Vs. R for statistical/machine learning for big data? • r/Python
I have a finance background and I was interested in being able to process a larges amount of data and make predictions from it, so I took up R. It...
Unit testing SQLAlchemy models with relationships?: https://www.reddit.com/r/Python/comments/7d8bv0/unit_testing_sqlalchemy_models_with_relationships/
reddit
Unit testing SQLAlchemy models with relationships? • r/Python
I have a few models that I want to test, and I want to make sure the relationships are working as well. So far, I haven't been able to find any...
Django 2.0 release candidate 1 released | Weblog: https://www.reddit.com/r/Python/comments/7d8r0x/django_20_release_candidate_1_released_weblog/
reddit
Django 2.0 release candidate 1 released | Weblog • r/Python
19 points and 1 comments so far on reddit
Cartesian product using python without itertools: https://stackoverflow.com/questions/47275300/cartesian-product-using-python-without-itertools
Stackoverflow
Cartesian product using python without itertools
I came across this nice line of python code for cartesian product of n number of lists that I would like to bring back on multiple lines :
def cart_product_1(*seqs):
if not seqs:
retur...
def cart_product_1(*seqs):
if not seqs:
retur...
Want to contribute to open source, just don't know where to start!: https://www.reddit.com/r/Python/comments/7d9c32/want_to_contribute_to_open_source_just_dont_know/
reddit
Want to contribute to open source, just don't know... • r/Python
Hey guys, I'm a proficient Python programmer, I've interned as a Software Engineer using Python. I've built some modules and small applications...
Guys, could you help me with python? I need to learn more about python’s library, for exemplo, how can I know how much function the library have?: https://www.reddit.com/r/Python/comments/7d9p1e/guys_could_you_help_me_with_python_i_need_to/
reddit
Guys, could you help me with python? I need to learn... • r/Python
0 points and 0 comments so far on reddit
Python tuple unpacking in return statement: https://stackoverflow.com/questions/47272460/python-tuple-unpacking-in-return-statement
Stack Overflow
Python tuple unpacking in return statement
The Python language (especially 3.x) allows very general unpacking of iterables, a simple example of which is
a, *rest = 1, 2, 3
Over the years, this unpacking has been gradually generalized (see...
a, *rest = 1, 2, 3
Over the years, this unpacking has been gradually generalized (see...