Hi i am studing python and i have a question from my book if someone can help me: https://www.reddit.com/r/Python/comments/5t0o9w/hi_i_am_studing_python_and_i_have_a_question_from/
reddit
Hi i am studing python and i have a question from my... • /r/Python
def merge(A,B): L=[ ] while A!=[ ] and B!=[ ]: if A[0]<B[0]: L=L+[A.pop(0)] else: ...
I made this program to calculate pi using a program I made to calculate integrals as a novice programmer in calc class. How do I make it better and more accurate? How do I get more digits of pi?: https://www.reddit.com/r/Python/comments/5t0oas/i_made_this_program_to_calculate_pi_using_a/
reddit
I made this program to calculate pi using a program I... • /r/Python
import math def f(x): return math.sqrt(1-(x**2)) def pi(startingx, endingx, numberofRectangles) : width =...
Python Weekly - Issue 281: http://us2.campaign-archive.com/?u=e2e180baf855ac797ef407fc7
How to apply outer product for tensors without unnecessary increase of dimensions?: http://stackoverflow.com/questions/42094542/how-to-apply-outer-product-for-tensors-without-unnecessary-increase-of-dimension
Stackoverflow
How to apply outer product for tensors without unnecessary increase of dimensions?
I have two vectors v and w and I want to make a matrix m out of them such that:
m[i, j] = v[i] * w[j]
In other words I want to calculate the outer product of them. I can do it either by using the...
m[i, j] = v[i] * w[j]
In other words I want to calculate the outer product of them. I can do it either by using the...
Data from arduino to raspberry pi question: https://www.reddit.com/r/Python/comments/5t0z91/data_from_arduino_to_raspberry_pi_question/
reddit
Data from arduino to raspberry pi question • /r/Python
Hey all, Im trying to get data from a arduino uno board to a raspberry pi board. Im running python on the raspberry pi. Anyone know of any...
Any module/method to remove the prompt (">>>" and "...") from Python console code for easy copy/pasting?: https://www.reddit.com/r/Python/comments/5t14xj/any_modulemethod_to_remove_the_prompt_and_from/
reddit
Any module/method to remove the prompt (">>>" and... • /r/Python
I've always found this very annoying that whenever IDLE code is posted online it contains the ">>>" and "..." characters and is essentially...
hey all! issue figuring out how to sum up loop outputs into a list: https://www.reddit.com/r/Python/comments/5t238n/hey_all_issue_figuring_out_how_to_sum_up_loop/
reddit
hey all! issue figuring out how to sum up loop outputs... • /r/Python
i=int(input("how many classes did you take this term")) x=0 c=0 real=0 while x<i: x+=1 g=int(input('how many credits was the class')) ...
Python code showing how to use Webhose.io rated reviews for sentiment classification: https://www.reddit.com/r/Python/comments/5t25ak/python_code_showing_how_to_use_webhoseio_rated/
reddit
Python code showing how to use Webhose.io rated... • /r/Python
1 points and 0 comments so far on reddit
cx_freeze and single-file eggs: http://stackoverflow.com/questions/42095795/cx-freeze-and-single-file-eggs
Stackoverflow
cx_freeze and single-file eggs
I'm trying to use cx_freeze with a python2.7 distutils script, and it seems to get tripped up on 2 packages: rsa & pyasn1:
error: [Error 3] The system cannot find the path specified:
'c:\\pyth...
error: [Error 3] The system cannot find the path specified:
'c:\\pyth...
Producing an MLE for a pair of distributions in python: http://stackoverflow.com/questions/42033893/producing-an-mle-for-a-pair-of-distributions-in-python
Stackoverflow
Producing an MLE for a pair of distributions in python
Ok, so my current curve fitting code has a step that uses scipy.stats to determine the right distribution based on the data,
distributions = [st.laplace, st.norm, st.expon, st.dweibull, st.invweib...
distributions = [st.laplace, st.norm, st.expon, st.dweibull, st.invweib...
Absolutely flummoxed by a particular... thing? In Python 2.7: https://www.reddit.com/r/Python/comments/5t242r/absolutely_flummoxed_by_a_particular_thing_in/
reddit
Absolutely flummoxed by a particular... thing? In... • /r/Python
I'm working on some code in order to test the effectiveness of a genetic algorithm versus a brute force algorithm in optimizing a solution to a...
How would you document a pyee.EventEmitter event?: https://www.reddit.com/r/Python/comments/5t2kd2/how_would_you_document_a_pyeeeventemitter_event/
reddit
How would you document a pyee.EventEmitter event? • /r/Python
I also asked this on /r/learnpython, but I feel like this is general enough for the main sub as well. Feel free to tell me if I'm wrong. I've...
Python Flask services for automating and integrating services (crosspost from /r/devops): https://www.reddit.com/r/Python/comments/5t33z5/python_flask_services_for_automating_and/
reddit
Python Flask services for automating and integrating... • /r/Python
1 points and 0 comments so far on reddit