I just released a small library to efficiently store and compare massive integers in memory: gzint (stands for gzipped-integer): https://www.reddit.com/r/Python/comments/5duh0g/i_just_released_a_small_library_to_efficiently/
reddit
I just released a small library to efficiently store... • /r/Python
2 points and 1 comments so far on reddit
I got up this morning and I wrote my very first executable in Python. A musical instrument practice session generator I call brutaltutor.py: https://www.reddit.com/r/Python/comments/5dunt5/i_got_up_this_morning_and_i_wrote_my_very_first/
reddit
I got up this morning and I wrote my very first... • /r/Python
I learned how to import random and select randomly from a list of strings or bounded numbers, use print, and import OS so I could clear the...
Question About BeautifulSoup on Jython: https://www.reddit.com/r/Python/comments/5dvpmp/question_about_beautifulsoup_on_jython/
reddit
Question About BeautifulSoup on Jython • /r/Python
Hi guys I'm moderately new to messing around with Python stuff and I wanted to be able to use bs4 on Jython and wasn't sure that the library could...
Python3: Print lines from text file: https://www.reddit.com/r/Python/comments/5dwak6/python3_print_lines_from_text_file/
reddit
Python3: Print lines from text file • /r/Python
Trying to write a program that will look through a text file containing the NYTimes bestselling books and let the user search and print a book...
[Python] Using linux OS. Why can't I use numpy even though I downloaded it?: https://www.reddit.com/r/Python/comments/5dw66z/python_using_linux_os_why_cant_i_use_numpy_even/
reddit
[Python] Using linux OS. Why can't I use numpy even... • /r/Python
New to using python, also new to using linux / ubuntu. My CS professor made us download ubuntu... Anyways I'm trying to learn python to do a...
Does anyone else hit F5 to run their Python code and immediately regret it...: https://www.reddit.com/r/Python/comments/5dwdw7/does_anyone_else_hit_f5_to_run_their_python_code/
reddit
Does anyone else hit F5 to run their Python code and... • /r/Python
because instead of running the code, it makes the screen refresh your jupyter notebook?
I wrote a package that let you log to a file without modifying code, with just one line(inspired by q): https://www.reddit.com/r/Python/comments/5dwi0r/i_wrote_a_package_that_let_you_log_to_a_file/
reddit
I wrote a package that let you log to a file without... • /r/Python
1 points and 1 comments so far on reddit
[Troubleshooting] Python won't save: https://www.reddit.com/r/Python/comments/5dwoid/troubleshooting_python_wont_save/
reddit
[Troubleshooting] Python won't save • /r/Python
Alright so I am doing this challenge 25 remember challenge 9? question in the little book of programming languages. And I made my solution, but it...
Learn all the important skills Python programmers: https://www.reddit.com/r/Python/comments/5dwyl2/learn_all_the_important_skills_python_programmers/
reddit
Learn all the important skills Python programmers • /r/Python
0 points and 0 comments so far on reddit
how to get help options for data types in python: http://stackoverflow.com/questions/40670969/how-to-get-help-options-for-data-types-in-python
Stackoverflow
how to get help options for data types in python
using below for loop to see all help options for dictionaries
for me in dir(dict):
if not me.startswith("__"):
help(dict.me)
error is AttributeError: type object 'dict' has no attr...
for me in dir(dict):
if not me.startswith("__"):
help(dict.me)
error is AttributeError: type object 'dict' has no attr...
WoW guys! I made an awesome gif animation of Wilson's algorithm with python!: https://www.reddit.com/r/Python/comments/5dxg2r/wow_guys_i_made_an_awesome_gif_animation_of/
reddit
WoW guys! I made an awesome gif animation of Wilson's... • /r/Python
1 points and 0 comments so far on reddit
WOW! guy, I made an awesome gif animation of Wilson's algorithm!: https://www.reddit.com/r/Python/comments/5dxhp9/wow_guy_i_made_an_awesome_gif_animation_of/
reddit
WOW! guy, I made an awesome gif animation of Wilson's... • /r/Python
674 points and 81 comments so far on reddit
Coupled map lattice in Python: http://stackoverflow.com/questions/40670031/coupled-map-lattice-in-python
Stackoverflow
Coupled map lattice in Python
I attempt to plot bifurcation diagram for following one-dimensional spatially extended system with boundary conditions
x[i,n+1] = (1-eps)*(r*x[i,n]*(1-x[i,n])) + 0.5*eps*( r*x[i-1,n]*(1-x[i-1,n]) ...
x[i,n+1] = (1-eps)*(r*x[i,n]*(1-x[i,n])) + 0.5*eps*( r*x[i-1,n]*(1-x[i-1,n]) ...
Analysis of peoples sexual habits through the controversial Okcupid dataset in Python: https://www.reddit.com/r/Python/comments/5dxrc0/analysis_of_peoples_sexual_habits_through_the/
reddit
Analysis of peoples sexual habits through the... • /r/Python
1 points and 0 comments so far on reddit
Why are __sub__ and __rsub__ implemented and, in this way, for numbers.Complex: http://stackoverflow.com/questions/40490068/why-are-sub-and-rsub-implemented-and-in-this-way-for-numbers-complex
Stack Overflow
Why are __sub__ and __rsub__ implemented and, in this way, for numbers.Complex
I was looking at the implementation of Complex in the numbers module and noticed __sub__ and __rsub__s implementation that looked like this:
def __sub__(self, other):
""" self - other """
...
def __sub__(self, other):
""" self - other """
...
How big can the input to Pythons input() function be?: http://stackoverflow.com/questions/40598483/how-big-can-the-input-to-pythons-input-function-be
Stackoverflow
How big can the input to Pythons input() function be?
How large can the input I supply to the input() function be?
Unfortunately, there was no easy way to test it. After using a lot of copy-pasting I couldn't get input to fail on any input I supplie...
Unfortunately, there was no easy way to test it. After using a lot of copy-pasting I couldn't get input to fail on any input I supplie...