were can i find advance ( hardest ) python projects with source code ?
constants - Hard coded variables in python function - Stack Overflow
What does hardcoded means ?
In simple terms, hardcoding things mean that you add certain bits of data as part of your script, usually in such a way that you can't change it down the line without also changing the script. For instance, say you have a program that may generate a few files. You can 'hardcode' the location where those files will be saved by simply doing something like with open("c:/users/bobby/documents") as file:, but now you can't run your code on a computer that doesn't have a user 'bobby' registered.
The main thing to keep in mind here is to ask yourself, "how much flexibility will I need?" If you're working on a script that you're going to run once a month on your own computer, hardcoding things can be fine. If you're making something that people will be using on the daily, you'll practically *have* to make it flexible enough that an end user can pick things like 'where is the data saved,' 'what default name should be used' et cetera.
More on reddit.comWhat topics are considered “hard” in Python?
What makes Python coding challenges "advanced" versus beginner-level?
How many advanced Python problems should I solve before feeling interview-ready?
What's the biggest mistake candidates make in advanced coding interviews?
Videos
alot of list I could find on the internet are basic beginner python projects ( done quite a few )
i wanted to ask if someone has a list of the most advance pythone projects with source code.
or a website with a ton of projects.