Adding "basic python" to resume/CV: https://www.reddit.com/r/Python/comments/9lzjbg/adding_basic_python_to_resumecv/
reddit
Adding "basic python" to resume/CV
I understand a fair answer to this would be "don't put it on the CV unless you're proficient, with some work on Github to prove it etc. ", but the...
How do you deal with typos and misspelling in data?: https://www.reddit.com/r/Python/comments/9m0312/how_do_you_deal_with_typos_and_misspelling_in_data/
reddit
r/Python - How do you deal with typos and misspelling in data?
1 vote and 0 comments so far on Reddit
Embedded Python: Cranking Performance Knob up to Eleven!: https://www.reddit.com/r/Python/comments/9m0cmn/embedded_python_cranking_performance_knob_up_to/
reddit
r/Python - Embedded Python: Cranking Performance Knob up to Eleven!
1 vote and 0 comments so far on Reddit
I need help. I am new to Python and just made a little silly program for fun.: https://www.reddit.com/r/Python/comments/9m0e9w/i_need_help_i_am_new_to_python_and_just_made_a/
reddit
r/Python - I need help. I am new to Python and just made a little silly program for fun.
1 vote and 2 comments so far on Reddit
We built a website for gamers that uses video game driven examples to teach complete beginners Python. It was built it in 24 hours for a Y-Combinator hackathon and we wanted to share!: https://www.reddit.com/r/Python/comments/9m08pe/we_built_a_website_for_gamers_that_uses_video/
reddit
r/Python - We built a website for gamers that uses video game driven examples to teach complete beginners Python. It was built…
2 votes and 0 comments so far on Reddit
I made a quadratic equation solver and grapher.: https://www.reddit.com/r/Python/comments/9m0u67/i_made_a_quadratic_equation_solver_and_grapher/
reddit
r/Python - I made a quadratic equation solver and grapher.
1 vote and 0 comments so far on Reddit
I built a web app in Flask to convert recipes from volumetric to weight units, and to scale the recipe up or down!: https://www.reddit.com/r/Python/comments/9m13fy/i_built_a_web_app_in_flask_to_convert_recipes/
reddit
r/Python - I built a web app in Flask to convert recipes from volumetric to weight units, and to scale the recipe up or down!
1 vote and 1 comment so far on Reddit
python - Implementing an LSTM network with Keras and TensorFlow: https://stackoverflow.com/questions/52647115/python-implementing-an-lstm-network-with-keras-and-tensorflow
Stack Overflow
python - Implementing an LSTM network with Keras and TensorFlow
With limited knowledge, I've built an LSTM network. I would like to validate my assumptions and better understand the Keras API.
Network Code:
#...
model.add(LSTM(8, batch_input_shape=(None, 100,...
Network Code:
#...
model.add(LSTM(8, batch_input_shape=(None, 100,...
Why doesn't calling a Python string method do anything unless you assign its output?: https://stackoverflow.com/questions/9189172/why-doesnt-calling-a-python-string-method-do-anything-unless-you-assign-its-out
Stack Overflow
Why doesn't calling a Python string method do anything unless you assign its output?
I try to do a simple string replacement, but I don't know why it doesn't seem to work:
X = "hello world"
X.replace("hello", "goodbye")
I want to change the word hello to goodbye, thus it should c...
X = "hello world"
X.replace("hello", "goodbye")
I want to change the word hello to goodbye, thus it should c...
How to create asyncio stream reader/writer for stdin/stdout?: https://stackoverflow.com/questions/52089869/how-to-create-asyncio-stream-reader-writer-for-stdin-stdout
Stack Overflow
How to create asyncio stream reader/writer for stdin/stdout?
I need to write two programs which will be run as a parent process and its child. The parent process spawns the child and then they communicate via pair of pipes connected to child's stdin and stdo...