sanitizing code for an exec command: https://www.reddit.com/r/Python/comments/6b3zzy/sanitizing_code_for_an_exec_command/
reddit
sanitizing code for an exec command
I have a script that runs code provided by the user via an exec command. I know this can be considered a security hazard. As a precaution,...
Python Library for Program Development: https://www.reddit.com/r/Python/comments/6b4aw3/python_library_for_program_development/
reddit
Python Library for Program Development • r/Python
We have an assignment in school to develop a windows program in Python. Is there a drag and drop program like C# in visual studio for Windows...
Need help with making a Python Numpy function for calculating distance of line in grid cells: https://www.reddit.com/r/Python/comments/6b4cd2/need_help_with_making_a_python_numpy_function_for/
reddit
Need help with making a Python Numpy function for... • r/Python
So the situation is basically that there is a unit square (with corners (0,0),(1,0),(0,1) and (1,1)) which is made up by n*n (so n-squared) square...
Make Python Pygame Sprites Transparent: https://www.reddit.com/r/Python/comments/6b4lz4/make_python_pygame_sprites_transparent/
reddit
Make Python Pygame Sprites Transparent • r/Python
I'm making a game that involves a finish line at the end of the race track in Pygame. The graphical finish line is in the background image so I...
Can anybody think of a way to do this with less variables?: https://www.reddit.com/r/Python/comments/6b56tn/can_anybody_think_of_a_way_to_do_this_with_less/
reddit
Can anybody think of a way to do this with less variables? • r/Python
def approxPi( error ): num = 4 denom = 1 curr = num/denom prev = 0 while abs(curr-prev)>error: ...
calculating interest using looping: https://www.reddit.com/r/Python/comments/6b5et8/calculating_interest_using_looping/
reddit
calculating interest using looping • r/Python
I got project calculate interest compund interest, which the problem is: *A person invests USD1000 in a saving account yielding 5 percent...
can anyone help me with this Regex?: https://www.reddit.com/r/Python/comments/6b69ai/can_anyone_help_me_with_this_regex/
reddit
can anyone help me with this Regex? • r/Python
I'm trying to find all "%" in my string except these two situations: when the percentage sign is like: "abacuscreated >= %s" or "abacuscreated...
I made a style-checking script in python for an introductory programming class and would love feedback!: https://www.reddit.com/r/Python/comments/6b6bmo/i_made_a_stylechecking_script_in_python_for_an/
reddit
I made a style-checking script in python for an... • r/Python
1 points and 0 comments so far on reddit
What's your favorite Python IDE?: https://www.reddit.com/r/Python/comments/6b7471/whats_your_favorite_python_ide/
reddit
What's your favorite Python IDE? • r/Python
Want to see which one is the most used one! Please choose your favorite one ^^, thank you! Poll: http://www.strawpoll.me/12967033 Source of...
Need help dynamically creating buttons with different images and commands for each button.: https://www.reddit.com/r/Python/comments/6b7aak/need_help_dynamically_creating_buttons_with/
reddit
Need help dynamically creating buttons with different... • r/Python
Okay, I'll jump right into it. I need to dynamically create buttons that have different images and commands. I'm making a loot logging program for...
dealing with blanket try/excepts: https://www.reddit.com/r/Python/comments/6b77cl/dealing_with_blanket_tryexcepts/
reddit
dealing with blanket try/excepts • r/Python
I'm jumping on a new codebase that where the previous developer was aggressively solving problems by try/excepting throughout every code path. I'm...
New to programming - combining chatbots?: https://www.reddit.com/r/Python/comments/6b7lr5/new_to_programming_combining_chatbots/
reddit
New to programming - combining chatbots? • r/Python
Hey everyone, before I begin, let me say thank you for your patience. I am new to programming. So: I am trying to create a simple program that...
Create Word/OpenOffice Documents with Python?: https://www.reddit.com/r/Python/comments/6b7rg4/create_wordopenoffice_documents_with_python/
reddit
Create Word/OpenOffice Documents with Python?
I'm relatively new to Python. My job requires me to create documents that are nearly identical except for the names and some other fields, aka...
Generating a simple JSON proxy for a gRPC service is made easy.: https://www.reddit.com/r/Python/comments/6b7qkl/generating_a_simple_json_proxy_for_a_grpc_service/
reddit
Generating a simple JSON proxy for a gRPC service is... • r/Python
1 points and 0 comments so far on reddit
How to distribute work to workers(raspberry pi zero) using a queue in python?: https://www.reddit.com/r/Python/comments/6b8sww/how_to_distribute_work_to_workersraspberry_pi/
reddit
How to distribute work to workers(raspberry pi zero)... • r/Python
I have a list of names for analysis. This list is downloaded by each worker (raspberry pi zero), not at the same time and takes the first name...