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 11 months ago.
Improve this question
I'm not sure on the specifics but I know C/C++ code is optimized by the compiler.
Curious if/how Python is optimized during interpretation.
Also appreciated is any good source on how these and other languages are optimized e.g. Rust, Scala, and JS.
Related
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 3 years ago.
Improve this question
Sorry guys if this seems like a really basic question. I understand how to build applications using a programming language. Now, I read that tensorflow is written partly in C/C++ and Python. I'm wondering why this is done and how you can get multiple languages to interface with each other.
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 3 years ago.
Improve this question
I've done a little predictive program with Python and I would like to transform it in an application for smartphones. Can I accomplish it with Python itself, or should I use another language? If yes, what APIs would you recommend for that?
Thanks
You might be able to do this with Kivy.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I write course work and now I stops in a progrees of writing, I want to build application based on Python which can drow Flowcharts of any code(maybe not all but main languages is: Python, Pascal, c++).
On Python I know about Graphviz+Pyreverse, but this solution is only for Python code vizualization.
You already have a python solution.
For C++ use clang/llvm.
For pascal, first use a pascal → C translator, then hand it to clang.
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
Is there a python library for transliterating Hindi to English?
e.g. "खाया" should be converted to "khaya"
The less crappy transcoder I know of is sanscript. It is intended to transliterate Sanskrit text, but is of course also suited for Hindi, as they both use the Nagari notation. There are some issues in the code, and it does not do any validation of the input, but it has a large choice of scripts (not only Nagari).
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
Or is python not a good programming language for that? If it isn't good for that, then what programming language is?
Depends on the program. There are lots of different programs (Firefox, Wordpress, jQuery...) that utilize plugins and they all use different programming languages.
Look at the plugin documentation for the program you want to write a plugin for and it will tell you what languages you can write the plugin in.