135201
You will be muted until you read the rules. Read them! @Rules_for_Python A group about the Python programming language. Offtopic things go here: @pythonofftopic Resources to learn python: @pythonres Group for Hy: @hylang Selenium: @SeleniumPython
I’m starting with Python programming. Which topics should I focus on first as a beginner? Any suggestions?”
Читать полностью…
I know it’s a bit off-topic, but I asked because I’m genuinely worried about my future. I don’t really have another skill or career besides programming, and given the very difficult political situation in my country, I’m especially concerned about what the future might look like.
A few years ago, building even a simple frontend could be extremely difficult for me and I had to struggle with every line of code. But now, with AI agents, I can build things much more easily, sometimes without writing a single line of code myself.
That’s why I’m wondering where this leaves programmers like me in the future.
What’s your opinion on the future of software development and coding in the age of AI tools like Claude? Do you think AI will replace programmers, or will it mainly change the way we build software?
Читать полностью…
Honestly, I don't really know yet. I just thought learning Python would be useful for my career. But you're right. I should have a clearer goal. Any advice on how to figure that out?
Читать полностью…
You can sustain "watching" other people. You need to be able to learn yourself. The job is about learning yourself. Not being taught everything.
Читать полностью…
I hired a tutor, but I barely learned anything. However, when I watched my friend working, I picked up a few things quickly. But since he moved to another city, I have no one to study with now. So I'm wondering if there are other people who struggled the same way and couldn't learn like regular people.
Читать полностью…
Think of a project that you will actually use, not something abstract, and work on that. Or find a tutor.
Читать полностью…
Not Python related. Please move the question to @pythonofftopic. And don't hijack other people's conversations!
Читать полностью…
So, you're saying because one part of your solution is Python, your question is Python related even though your question has nothing to do with that part that is implemented in Python? 😅
Читать полностью…
first read that message properly ... that is python(fastapi) based question only ..
Читать полностью…
If you know the basics well and just stucking in problem versus solutions, then learning the basics again and again is not recommended. It's a learning loop where you will be trapped for long period.
Instead, practise on leetcode
Python groups in other languages
(⚠️Not managed by us ‼️)
Arabic @arabipython
Azerbaijani @azepug
Chinese @pythonzh
French @python_francais
German @pythonde
Hebrew @pythonisrael
Tamil @pythontamilcommunity
Indonesian @pythonid
Italian @python_ita @pythonita
Kazakh @python_kz
Malaysia @pythonmalaysia
Persian @pyfarsi
Portuguese @pythonbr
Russian @ru_python_beginners @ru_python @python_scripts
Spanish @PythonEsp
Swahili @python_eafrica
Turkish @python_tr
Uzbek @python_uz
If you have an active and well managed group that you want to be listed there, ask in the Meta group, link in the rules page.
Type hints only says the method/variable details, nothing more
Читать полностью…
🤔 i have a fllask + flask-login session security question
When I use login_user(user_obj), I understand Flask protects the session cookie from client-side modification/tampering.
But I also store things like:
session['login_pending'] = {'email': 'a@gmail.com'}session.get('login_pending')email inside the session cookie to someone else's email?session manually, or do I need to verify/sign/check it separately in my route?Flask-WTF's form.validate_on_submit(), or are these two things completely separate? is notmal session data reads protect lile form.validate_on_submit()
Читать полностью…
looks like you need an offtopic group, please delete the off-topic message(s) and continue this conversation at @pythonofftopic
Читать полностью…
its offtopic, however, will not replace programmers (at least, will not replace who know how to play good with the agents), and yeah, agents will change the way we write software on the speed and efficiency face
Читать полностью…
Think about why you're learning Python. What problems do you want to use it to solve?
Читать полностью…
That actually makes sense. The problem is, I have no idea what project to start with. I'm literally a total beginner - all I know right now is 'Hello, World!' Do you have any suggestions for someone who's just starting out?
Читать полностью…
Hi, everyone! I really want to learn Python, but courses don't help because there's no one to actually teach me, and I struggle with self-study. Can anyone suggest what I should do?
Читать полностью…
Bro can I get job in python I'm in India situation is very bad here i want to job abroad I can't afford private college or any college even certifications are too expensive I'm below poverty my situation is too bad and i can't even job here jobs are 10-12hrs with low salary and I can't manage job + studies idk what will happen just wanna do something in my life at least a middle class life . I just wanna know how can I get job abroad easily within 1-2 years
Читать полностью…
This is not a Python specific question, please delete your offtopic message, move to @PythonOfftopic and ask there.
Читать полностью…
looks like you need an offtopic group, please delete the off-topic message(s) and continue this conversation at @pythonofftopic
Читать полностью…
Depends on when u have to check the data
If you have to check the data before going to output, it's enough make a function which verifies the data
While if you have to check the data when them arrive, you have to just check the data before the function's logic
So in my function executeion way i need to check if both is None, return Runtime error like this saying both cannot None... 😋
Читать полностью…
Python, as every language, is not a dynamic language, so u cannot check in realtime if the user gives all the necessary data
U can check it only when u execute the code