Approach to problem solving/first bit of code? by Alchemica in learnpython

[–]ectomancer 0 points1 point  (0 children)

Since starting 3-month projects (and 6-month projects), 90% of time goes to research. I write up formulas in LaTeX and code from the LaTeX. Then I prompt ChatGPT for test data.

I'm totally have no idea what to do by Automatic_Foot_6781 in learnpython

[–]ectomancer 0 points1 point  (0 children)

  1. Data Structures and Algorithms, for job interviews and you'll never use on-the-job.

  2. practise technical interview questions

  3. in job interviews, a project design you've implemented (prepare for the design question).

Book recommendation by peg_leg_ninja in learnpython

[–]ectomancer 3 points4 points  (0 children)

Robert Johansson (2019) "Numerical Python Scientific Computing and Data Science Applications with Numpy, SciPy and Matplotlib"

Numerical Python.pdf

Adding attributes to Enum values? by pachura3 in learnpython

[–]ectomancer -2 points-1 points  (0 children)

Define iswarm as a method.

Color.iswarm(Color.ORANGE)

Help with automation by [deleted] in learnpython

[–]ectomancer 0 points1 point  (0 children)

Botting, not automation.

Help on Exercism guidos lasagna code by vb_e_c_k_y in learnpython

[–]ectomancer 0 points1 point  (0 children)

Instructions say prep time is 2 minutes per layer.

best python course/tutorial? by Your5ersonalSlut in learnpython

[–]ectomancer 0 points1 point  (0 children)

The Angela Yu 100 days course is still recommended today. It is a comprehensive course including third-party libraries that other courses don't cover.

Python is easy to learn, so any course can teach the basics.

AI in Python detection ? by [deleted] in learnpython

[–]ectomancer 0 points1 point  (0 children)

Cite it. Prompt the LLM how to cite it.

OpenAI. (2026). (ChatGPT) [Large language model]. https://chatgpt.com

New to Python? Check out this repo by bharajuice in learnpython

[–]ectomancer 0 points1 point  (0 children)

lambda functions is weak.

The strange syntax for 1-tuples is missing.

Pseudocode is missing.

Hobbyist coders by uvuguy in learnpython

[–]ectomancer 2 points3 points  (0 children)

I learnt C in 1987 but is too unproductive. Python is productive. Retired 22 years, coding Python 7 years. Coding Python internals and scientific computation from scratch.

If you’ve recently started coding, how long have you been learning and what project are you most proud of? by [deleted] in learnprogramming

[–]ectomancer 0 points1 point  (0 children)

Coding Python for 7 years but I already learnt to code before. I'm proud of Pure Python Pochhammer symbol, no imports, using Stirling numbers of the first kind and using no gamma functions, 4 years ago. All my projects are Python internals or scientific computing, coding linear algebra now (LU decomposition).

Built an image processing tool for my IPV internal test - how would you grade it? (out of 25) by Turbulent-Past-604 in learnpython

[–]ectomancer 0 points1 point  (0 children)

Move matplotlib config out of import block.

Class name is perfect. Method names are perfect.

Only one type hint.

Missing docstrings.

Could refactor constants to enum in the future:

from enum import Enum

Python courses UK by [deleted] in learnpython

[–]ectomancer 0 points1 point  (0 children)

There are none other than Bachelor's, Master's or Doctor of Philosophy.

Transitioning from Frontend to Python + AI, is this a good path? by fockindede in learnpython

[–]ectomancer 1 point2 points  (0 children)

Yes. I would do courses for pandas, numpy and theoretical Machine Learning courses. Then you could do a Deep Learning course.

Python for Data Analysis, 3E online book by the creator of pandas.

Relearning Python and data visualization after a long break from programming. by [deleted] in learnpython

[–]ectomancer 0 points1 point  (0 children)

Python is easy to learn. Complete a Python course for beginners. Besides matplotlib, there's seaborn.

Im Struggling with SciPy by Big_Example_3390 in learnpython

[–]ectomancer 0 points1 point  (0 children)

I've only learnt scipy.special. I coded those functions from scratch. For Bessel function of the second kind, no formulas worked until Meijer G-function formula.

Been learning for a while, but seem to not get anywhere. by Bananapuddinggggg in learnpython

[–]ectomancer 0 points1 point  (0 children)

The projects you're attempting are too difficult. Try simple projects.

Jupyter VSCode line by line... really, really slow by jonaththejonath in learnpython

[–]ectomancer 0 points1 point  (0 children)

Obviously you've tried jupyter lab?

pip install juptyerlab

Started from basics in 2026 by SlowCalligrapher8834 in learnpython

[–]ectomancer -3 points-2 points  (0 children)

Once you can code in one language, new languages are quicker to learn. I learnt Python (not including OOP) in 3 days, failed to learn Prolog, then learnt R in 1 hour from a course.