Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 months ago.
Improve this question
I started learning web development, so besides Frontend, which is what I'm learning now, I want to learn a backend language (Python or PHP).
Let's suppose I start learning Python ( or the other way around), but a company that uses PHP for backend hired me.
Is it possible to get along with what I have, or will I have to learn PHP?
Thank you.
Yes, it should work, but remember, treating them as two separate languages because they are PHP and Python, the best approach is to ignore their specificity.
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 3 days ago.
Improve this question
Looking through the similar questions, I could not find an answer specific to this question.
My son is in the process of learning to become a back end Python developer. We're trying to find out which database framework is the most popular for employment purposes? We see Django a lot. However looking at statista.com (https://www.statista.com/statistics/1124699/worldwide-developer-survey-most-used-frameworks-web/), it's saying node.js is the most popular worldwide.
So I'm a little confused by that. Are there any professional back end Python developers who can offer some insight? Thanks in advance.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 days ago.
Improve this question
I am looking forward to building a program in python which tells if a text is fake or real. This is a project I want to start for educational purposes. For example, someone is sharing a story, the program will check the input and will determine whether the author is likely telling truth or fiction based on common patterns. I am looking for some things I can start off from, like libaries or documentation. Thanks for anyone who is willimg to help.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I was wondering if there is a way to incorporate pp (Parallel Python) with django. This would be great because I have multiple computers and I want to use them to better handle the requests.
paralel python is for litle bit different tasks, and for this purposes it is better to use nginx as loadbalancer.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am beginner of Python, does anyone knows how to make a different shapes of message windows in python? i want to design a better look and friendly GUI.
Thank you
I think Qt is what may be useful to you. Take a look at the documentation on QtProject homepage. Lots of tutorials can be found on the Internet. For your specific problem take a look at this SO question.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
In django,What is the difference between creating multiple applications and using the same application and using all models and views in the same application? Will the latter create any problems?
Divide et impera.
This is one of the basic rule of programming.
Divide your problem in smaller pieces and on the long run you will be happy:
Code re-usability
Maintenance
Elegance?
Also if you are working on an opensource project your main goal would be to find someone else who is interested in it and that could help you. It is easier to find someone interested in something really specific than to find someone who wants to adopt your super-huge app which does a lot of beautiful things that nobody else like.