TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Why use Python or similar?

36 pointsby Xelomover 11 years ago
Hi,<p>I am a .Net developer. I love C#, I think it is a great language with fantastic features. I&#x27;m looking at new startups job offerings and open source projects source codes a lot. I see a lot of Python or Ruby generally.<p>I know C# is not open source. That is not the case. You can use Java even Scala. But when I look at performance Python is not near C# or Java. And I can&#x27;t seem the find features of C# in Python. In my opinion, I feel more comfortable writing C# than Python. What is the reason behind choosing Python if it is slower and lack a lot of features when compared to my preferred language?<p>I&#x27;m not trying to say Python is bad or anything. If a lot of people using it there must be a reason. But I can&#x27;t see that reason. I&#x27;m trying to find it so I can give my time to the langauge.<p>Thanks

36 comments

chris_jover 11 years ago
One thing that I really like about Python is the interactive style of development that it encourages, at least for me. I tend to do Python development in emacs with source code in one buffer and a repl in another buffer, building my program up slowly and evaluating bits of it as I go along. This style of development works very well for me. There are other languages where you can do development like this but (and please correct me if I&#x27;m wrong), this doesn&#x27;t seem to be the way that people write code in C#.<p>Secondly, with Python, the most popular implementation of the language is supported on all the main platforms. Compare this to C# and .Net where, although you can use Mono on Linux and Mac, you&#x27;d not be using the same runtime that folks would be using on Windows. Call me paranoid but I still don&#x27;t wouldn&#x27;t trust Mono as much as I would trust CPython or Microsoft&#x27;s .Net runtime.<p>Having said all that, and despite the fact that I&#x27;ve written little C# code in anger, I still do like the look of C#. Microsoft seem to have done a pretty good job of updating the language over the years to support stuff like generics and functional programming. They&#x27;ve certainly done a better job on this front than Sun&#x2F;Oracle have done with Java. If C# works better for you than Python does on the platform that you use then I wouldn&#x27;t worry about sticking with it.<p>(EDIT - typo)
评论 #7048477 未加载
bollockitisover 11 years ago
Generally speaking, the Python community believes the strength of Python is in its culture, which can be summed up by the Zen of Python: <a href="http://www.python.org/dev/peps/pep-0020/" rel="nofollow">http:&#x2F;&#x2F;www.python.org&#x2F;dev&#x2F;peps&#x2F;pep-0020&#x2F;</a>. Python also recieves much praise for being easy to learn, readability, productivity, expressiveness, and its library support, namely NumPy and SciPy (Python is often used in scientific computing for this very reason). Aside from this, Python programmers like it and that&#x27;s reason enough. Performance for Python (and Ruby) is adequate for most use cases.<p>Personally, I don&#x27;t like Python. If I want a dynamically typed language, I use Ruby, but I came to this conclusion after spending time with both languages, and it wasn&#x27;t the feature set that sold me of one over the other, but rather how I felt while working in the language and its ecosystem. In other words, whether or not Python or Ruby are worth your time is a decision you&#x27;ll only be able to make after using the language.<p>I believe in being language agnostic whenever possible. Don&#x27;t hold strong opinions about languages. People invest a lot of time and energy into their tools. This is a &quot;sunk cost.&quot; Their time and energy can&#x27;t be reclaimed. So it&#x27;s no surprise that, when asked, they will praise their tools -- even if they aren&#x27;t objectively all that great -- solely to justify the costs. They aren&#x27;t trying to convince you, they&#x27;re trying to convince themselves. So don&#x27;t waste time trying to find feature comparisons. All languages have redeemable values, and learning a new one is always a valuable exercise.<p>So give Python and Ruby a shot. You might find you actually like them, but not for the reasons you expected to. And if you don&#x27;t like them, at least you&#x27;ll know why.
评论 #7047284 未加载
rbehrendsover 11 years ago
There are any number of reasons to use Python over C#.<p>(1) Ecosystem. Choice of language is often not dictated by language features, but what library features and especially third party libraries are available.<p>(2) Simplicity. It&#x27;s a lot easier to teach Python to non-programmer domain experts than C# or Java (a major reason, I think, why Python is used so extensively in scientific computing).<p>(3) Not being dependent on an IDE. Using an IDE is not always an option (e.g., system administration on the far end of an SSH connection).<p>(4) Prototyping. Especially when doing exploratory programming, a static type system can get in the way of drafting your ideas.<p>(5) Extensibility. It allows you to easily provide scriptability or configurability via Python.<p>(6) Portability. Like most interpreted languages, Python is extremely portable across a great many architectures.<p>(7) Interfacing with C. While P&#x2F;Invoke is much better than the JNI, Cython is easier than both.<p>Speed, incidentally, isn&#x27;t as much of an issue in many application domains as people seem to think. If it&#x27;s needed, it&#x27;s frequently just a few inner loops that dominate execution time, which can be implemented easily enough in Cython.<p>As for Python (or any other language) lacking features that you find in C#, I think you&#x27;ll find that some programmers will think the opposite (e.g., much more cumbersome metaprogramming in C#).<p>In short, which language to pick (insofar as that choice isn&#x27;t dictated by your job anyway) is influenced by a large number of factors, which different people will weigh differently.
girasquidover 11 years ago
In a lot of cases, the &quot;performance&quot; people care about when making language choice is &quot;developer performance&quot;. People choosing Python feel (perhaps incorrectly) that they will be more productive and able to build things faster with that language than any of the other ones they considered.<p>Contrived example: If it will take you 8 hours to write something in Language A that takes 30 seconds to run, or 30 hours to write it in Language B and have it run in 15 seconds, which do you choose? If raw performance isn&#x27;t the thing that&#x27;s valuable to your company, maybe Language A is a better choice (even if it&#x27;s slower than Language B).
3pt14159over 11 years ago
<p><pre><code> using System; public class Hello { public static void Main() { Console.WriteLine(&quot;Hello, World!&quot;); } } </code></pre> vs<p><pre><code> print &quot;Hello, World!&quot; </code></pre> Everything is just simpler in python and ruby.
评论 #7047192 未加载
评论 #7046886 未加载
评论 #7047000 未加载
viraptorover 11 years ago
To some extent if you choose C#, you also have to choose windows, visual studio, iis, etc. In python you can take each of those pieces and exchange it for something else. A lot of people like to do that.<p>Fortunately if there&#x27;s no need for a lot of .net ecosystem, you can run .net on linux and similar systems using mono. (I have and it&#x27;s a great platform to write for) But as soon as you want something more than the bare .net you&#x27;ll realise the pieces are hard to find.<p>Regarding the missing features - I don&#x27;t think there&#x27;s anything missing, you just need to know where to look. Only linq may not be available since relies on specific syntax, but due to what you can do dynamically, it&#x27;s not that needed in the first place.
pudquickover 11 years ago
Use what works for you.<p>In my case, that&#x27;s python.<p>It&#x27;s portable (cross platform), the final product is (usually) the script files themselves vs. an architecture specific &quot;executable&quot;, and the language includes &quot;batteries&quot; I find useful in the standard distribution: XML, JSON, and (a limited amount of) HTML parsing, URL parsing and retrieving, regular expressions - stuff that makes what I love to do (data wrangling) easy.<p>Additionally it has the benefit of being pre-installed on my OS of choice, OS X, and in that specific distribution a very useful third-party library comes pre-bundled: pyobjc<p>This means that I can write what is, in essence, a plain text file that &quot;runs&quot; on most any recent version of OS X and has almost full access to Apple&#x27;s ObjC (and C) APIs for controlling their systems. Talk about power!<p>And if someone on OS X wants to change the program? Nothing more than a text editor is needed. No need to re-compile, install an IDE, or a set of developer tools (outside of the python interpreter itself, which is pretty much on everything but Windows out of the box).<p>This last reason is specifically why python is very popular in the OS X sysadmin world right now. A large number of great open source OS X tools are written in python.
评论 #7046909 未加载
mturmonover 11 years ago
One thing that has not come up in other comments -- how many languages do you speak? From the tone of your comment, it seems like, not many.<p>If so, you owe it to yourself to diversify your language set. Which way you go does not matter so much as going somewhere. So don&#x27;t over analyze it, just write some stuff in Python for a couple of months and see how it feels. The learning curve is not steep.<p>As you do this, don&#x27;t waste energy trying to write C# code using Python, or giving up because feature X is not there.
PaulHouleover 11 years ago
If you like C# then use C#.<p>I think there are some people who see C# as a &quot;Microsoft Thing&quot; and won&#x27;t have anything to do with it.<p>As for Python, I don&#x27;t particularly care for it, but many people find it to be a satisfactory language in the sense that you find C# satisfactory. That is, there are lots of good libraries that you can do to get many tasks done quickly. Performance doesn&#x27;t matter much in applications that are limited by network latency, disk I&#x2F;O or waiting for database calls to come back.
评论 #7046706 未加载
analog31over 11 years ago
I&#x27;m a scientist who uses programming as a problem solving tool. Before learning Python, I spent upwards of a decade using Visual Basic.<p>My workplace has mostly C#, whereas I&#x27;m not part of the software development team, and am free to choose my own tools.<p>For me, a problem with proprietary IDE&#x27;s is that the forced distinction between &quot;development&quot; and &quot;run time&quot; environments encourages centralized development, which invariably becomes bureaucratic. When I need something from the programming department, they hand me a program which I have to carry to the target computer, test, and report back to them on any bugs or further changes. This cycle can take days or weeks if they&#x27;re busy with other projects at the same time.<p>In contrast, most of my work happens to be decentralized because it occurs in labs where the physical problem to be solved is located. Some of this work now occurs overseas. Much of it is done on computers that are off-network because the IT department rations connections. Locating the full development tools on each computer lets me quickly write and debug programs. And if I share a program with somebody else, it&#x27;s not prohibitive for them to learn how to make their own changes. I had a total non-programmer say to me: &quot;I think I found a bug in your code, and fixed it.&quot;<p>My situation is one where I actually have a reason to keep and share my programs in the form of source code rather than as an installable &#x2F; executable package.<p>As well, I found Python to be easy for an old geezer to learn, and to write reasonably bug free code. And I love the packages.
tlarkworthyover 11 years ago
Python code is smaller, and had better package management. I am sceptical you have something in C# that does not exist within a &quot;pip install XXX&quot; in python.<p>Python requires less LOCs than C#<p>Less code to maintain and it&#x27;s quicker to write. Binding to C is no problem either when you need raw performance.<p>You can run it on a wide range of systems too.
评论 #7046912 未加载
Glyptodonover 11 years ago
The main reason people use Python or Ruby is that it&#x27;s typically more productive. It&#x27;s basically saying that you value saving development time, organization, a vast range of free 3rd party libraries, and easy dependency management more than you value runtime efficiency or code execution speed.
neil_sover 11 years ago
I love and use both, so here&#x27;s my two cents:<p>(Context: I am not a &#x27;hardcore programmer&#x27;. I don&#x27;t use vim or emacs because I&#x27;m simply faster&#x2F;more productive with an editor that I don&#x27;t need to go through a learning curve for. I am not averse to the command line, but GUIs can be advantageous at times too.)<p>Python is great. It&#x27;s free, and available on every platform I care about. It has libraries that do absolutely everything in the world right out of the box. C#&#x2F;.NET is great too. It keeps everything structured, the syntax just makes sense, and Visual Studio is the best IDE I&#x27;ve ever used, with great debugging tools and smooth integration of everything you require (I&#x27;ve even started using the built-in git control at times). However, when I was previously using a Mac as my main machine, .NET programming was largely ruled out for practical purposes. For similar reasons, finding web hosts for my ASP.NET MVC applications (which is an AWESOME framework btw) was harder and costlier. Visual Studio was free for me as a student, but the pricing would be absolutely ridiculous if I had to pay for it myself. On Python, I have a ton of choice, eg for a web framework I could choose a barebones HTTP server, or web.py, or something as heavy-weight as Django. On .NET, I&#x27;m pretty much restricted to ASP.NET, and if I don&#x27;t like its defaults or the convention over configuration aspect, I&#x27;m so outta luck. In fact, for less common things, like client API libraries for specific websites, I might only find implementations in Python and Ruby, not C#. If I want help or to find documentation, the Python docs suck IMHO, but the community is amazing, whereas the community for ASP.NET isn&#x27;t as robust in my opinion. There are many python experts who will happily explain obvious-in-retrospect things, whereas with .NET I&#x27;ll sometimes get stuck with configuration files and what not that make no sense to me or to anyone willing to help. Lastly, if I want to quickly throw a script together for a puzzle or online coding competition, Python feels a lot more light-weight and easy to get started with than C#.<p>Python has a lot of downsides too, but I&#x27;ve got to cut this comment short now. The point is, each language has its own pros and cons - try Python for a few weeks and you might find that it isn&#x27;t as one-sided as you think.
skywhopperover 11 years ago
Performance is not the only reason to choose a language. Suitability to the particular project, availability of useful libraries, developer productivity, team members&#x27; existing skillset, health of the language&#x27;s community, speed of change in the language, integration of the language with tools already in use, ease of learning for new team members.<p>In my experience as a sysadmin running hundreds of different applications written in a wide variety of languages over the years, I&#x27;ve seen some of the worst performing apps written in the &quot;fast&quot; languages you mention, and some of the best performing written in Ruby and Python. Of course, it can go the other way as well. My point is that the quality of the code has as much to do with &quot;speed&quot; as the language chosen.<p>And I could go on and on about maintainability, ease of refactoring, and more. But I think you probably get the point.<p>If you&#x27;re curious about why people like Python, the best way to understand it is to learn it yourself. There are lots of free tutorials online and if you are already a skilled OO programmer, you should have no trouble picking it up. Spend a few weeks investigating it, and you might find that you prefer it, too!
bcostlowover 11 years ago
As some others have pointed out, speed of the application at runtime is not always the most important consideration, else we&#x27;d probably be doing everything in a mix of Fortran, C, and Assembly.<p>I have found that developer productivity is higher, especially when it comes to maintenance. For me, all the tools in an IDE help offset Python or Ruby&#x27;s simplicity when working in say, Java, when writing new code. But when reasoning about old code I haven&#x27;t touched in a while, or looking at others&#x27; code, Python is easier for me to reason about.<p>If casting about for a reason to learn any new language, I can think of a few. Understanding another language and how you approach problems with it may provide insight on how to better use your main language. Your career may be long, and your main language may not be popular forever. When acting as a hiring manager, I look for people who know multiple languages, even if I only need one. Especially if they tackled learning them outside of school. It shows both passion and initiative.
penguindevover 11 years ago
I&#x27;ve used python for at least 8 years, all on linux. It works fantastically well for complex shell script replacements and small projects like web interfaces. It is extremely expressive (lots of power on a few lines of code) while being readable (at least certainly to english speakers, since strange symbols are minimized).<p>We replaced an old perl-cgi web site with it, and I wouldn&#x27;t touch anything related to perl with a 10 foot pole ever again in my life time (cough, cough, ruby). Perl is astounding at hiding bugs.<p>Python integrates pretty well with Unix kernel apis, and the unchecked exception handling is fantastic IMHO. If you want, you can also do exactly what GO does and have multiple return values (for apis you define), but I haven&#x27;t felt the need to do that too many times.<p>I also like pythons string and regex methods. C++ std::string is a freaking pile of crap. (even in c++11, I believe).<p>Where python annoys me is on a large code base (30K lines+). This is where a very bad contradiction in python&#x27;s zen appears: staying readable. I should be able to read all the call sites of a function, or method, or references of an attribute, and python makes that impossible compared to what I&#x27;m sure you can do in c#. Frankly, I was considering whether using mono&#x2F;c# would be more appropriate, what is holding me back is clearly microsoft&#x27;s &#x27;intentions&#x27; and I don&#x27;t like being a second class citizen.<p>It is also frustrating to have many classes of error appear only at run time, which would have been caught by a statically typed language. Edit: I&#x27;ve used pylint and pyflakes, and currently just use pyflakes regularly, but that&#x27;s a bare minimum of checking.<p>So I would be very careful about choosing python on a large project. The problem is, it&#x27;s just so damn good at doing quick development.
charlesjuover 11 years ago
It&#x27;s simple. Speed and cost.<p>Python&#x2F;Ruby projects cost less fixed cost to develop and maintain. They cost more to run and scale.<p>Startups lack development and maintenance costs and generally scaling dollars are followed by revenue or additional funding to finance that cost.<p>--<p>Additionally Python&#x2F;Ruby have a lot more features, frameworks, extensions that specially deal with modern startup issues.
smoeover 11 years ago
I don&#x27;t know C#, so i can&#x27;t compare it with python. Some reasons why I like python:<p>- The REPL. I &#x27;m so used to play around with newly installed libraries or certain features in the REPL that I&#x27;m always kind of lost when coding in a language where there is none:)<p>- I can do almost everything I need in one language. From simple scripts to web applications. This makes it great for rapid prototyping. I can replace parts later if there is a benefit.<p>- Readability of code. I really like the uncluttered visual layout and the use of English keywords instead of punctuation.<p>- The vast amount of solid libraries available.<p>- No need for an IDE. I use emacs, but I think it&#x27;s great for collaboration if everybody can start right away without having to install or buy anything (at least on systems, containing python out of the box). Not really important in a business environment, but it lowers the entry threshold for people new to the language or programming.
jisaacstoneover 11 years ago
As an experienced Python dev who recently started programming primarily in java: You should build something big in a scripting language - probably ruby or python - the different style really will make you a better developer.<p>I think learning java made me better ad designing classes (I never explicitly used a singleton in python before) and helped a bit in my thinking about concurrency.<p>For python or ruby try to follow the common idioms rather than programming in a familiar style. I&#x27;d recommend avoiding classes altogether at first, trying to get as much done with the built-in data structures and functional aspects of the languages.<p>For me the thing I miss most in java is the interactive interpreter. I usually develop with an ipython instance open so I can test out different ideas and explore the features of a new package quickly. I believe that is why scripting languages are favored by hackers and startups.
评论 #7047048 未加载
skrebbelover 11 years ago
I can&#x27;t see the reason either. There&#x27;s a lot of hate here for &quot;enterprisy&quot; languages like C#, but little to back it up.<p>Surely, &quot;Hello world&quot; style programs are simpler in Python. It&#x27;s probably easier to maintain and refactor C# programs due to the better tool support. The list goes on like this, with pros and cons on either side, but all in all, the differences are actually rather small: both are imperative (with some functional sauce added later), but are object-oriented, both allow you to express a large amount of logic in relatively little space (compared to e.g. Java or C++), both have a large ecosystem and both come with batteries included.<p>The biggest difference, really, is culture. Python has a very nice community, but unfortunately a sizeable part of this community learned Python as their first non-crap language, and thus can&#x27;t imagine anything better than Python. These are the people who keep raging that non-Python programmers aren&#x27;t as smart, or good, somehow, as them. It&#x27;s from these people that you get the vibe that C# is somehow inferior, but you can safely ignore them.<p>The C# community doesn&#x27;t have many such people, but in exchange it has it&#x27;s own flavour of idiot: a large share of mediocre programmers who can&#x27;t actually really code well, but just get by because the IDE helps them so much. These people completely depend on libraries and tools made by Microsoft and a small amount of commercial suppliers, not looking to any of the great open source stuff out there. They weren&#x27;t productive doing databases until Microsoft released Entity Framework. They weren&#x27;t productive doing web apps until Microsoft released ASP.NET MVC. They can&#x27;t fathom sharing their work, and they think certifications are more important than great software. In the companies they work, people like this easily make manager, which makes the problem worse.<p>Clearly, I&#x27;m generalizing strongly with respect to both communities. I&#x27;m mostly trying to make clear that even on the community level, the difference is very small. There&#x27;s awesome folks, and there&#x27;s mindless morons. The kinds of awesome that exists in both communities is pretty similar, the kinds of morons are slightly different.<p>You&#x27;ll find that, as a C# programmer, Python is very easy to learn, should you wish to do this. There&#x27;s no real technical need, because C# just about equally great (I think slightly greater, but that&#x27;s for religious reasons such as typing, and this thread is full of smart people who disagree). If you want to work at a shop that happens to use Python, you&#x27;ll live with it. Do spend some days getting into &quot;Pythonic&quot; thinking. Resist putting everything into a class. Bite the bullet of lacking editor support and more concise docs than you&#x27;re used to. Look past the included batteries, there&#x27;s often much better alternatives outside the standard library, much more than what you&#x27;re used to in .NET.
strictfpover 11 years ago
Python and Ruby are great because they have pragmatic communities which strive to produce simple and easy-to-use frameworks and libraries. This is also reflected in the languages, which are easy to read and write, and keeps things simple. Look at libs like rails, Django and pyparsing. These all acheive complex tasks in simple manners, while keeping turnaround time to an absolute minimum. Python has an awesome std library which accepts differences in platforms, countrary to the Java API which tried to find the middle ground. This makes python awesome as a scripting language and integration tool.<p>On the negative side, Ruby and Python threading sucks, since they both have global interpreter locks. And they lack static typing.
unotiover 11 years ago
Don&#x27;t try to evaluate the languages in isolation, because it&#x27;s the libraries and ecosystems of the languages that make all the difference in your life. If you evaluate Erlang the language in isolation, you might hate it. But if you evaluate it while trying to make a server that will scale up from 1 to a hundred machines with fail over and no single point of failure, you might find yourself adoring it (in which case you should look Elixir). Python has its sweet spots of amazing things too, defined mostly by its easy to use libraries for doing everything from image processing, language processing, face recognition, and you name it.
bitwizeover 11 years ago
Python is easy to get something up and running in quickly. That is, I would say, its primary benefit -- faster iterations. It also has a syntax that makes it easy to read and write Python programs, and lots of libraries.
runjakeover 11 years ago
Python may be slower than C# but it is good enough. More importantly, it has a thriving, immensely popular ecosystem and great documentation. That&#x27;s largely about all there is to it.
workhere-ioover 11 years ago
<i>But when I look at performance Python is not near C# or Java</i><p>For most websites out there it doesn&#x27;t matter. Facebook ran on normal PHP (similar performance to Python) up until the point when they had 500 million users and were forced to make some changes.<p>Instagram and Pinterest are powered by Python. Unless your site is bigger than those, you&#x27;ll be fine running Python.<p><i>And I can&#x27;t seem the find features of C# in Python</i><p>Python has a huge ecosystem of libraries. Maybe you just don&#x27;t know where to look?
ronaldbradfordover 11 years ago
My 2 cents.<p>1. OS portability (i.e. a large portion of the Internet world is not MS)<p>2. Open source community (You can talk to a developer of a library. Can you do that with C#)<p>3. Can write in simple editor or CLI (IDE&#x27;s can be nice but a generally overly complex, and require a rich client, and possibly a license)<p>4. Access to example code is much easier in open source.<p>5. Extensibility. If you don&#x27;t like something, you can easily adapt, even the most fundamental elements. You can&#x27;t do that with a non open source product.
bjourneover 11 years ago
Because you have to type less code when writing Python. No braces, dynamic typing and so on. Programs are half the size or less than C# code. The less code, the less chance there is for screwups, the less time it takes to grok and the less work it is to refactor. That&#x27;s why Python wins every time.
评论 #7049767 未加载
andrewflnrover 11 years ago
It&#x27;s easy. Like, really really easy. That alone makes up for a lot of flaws. Also, it&#x27;s easy in a way that makes it easy to mold to the problem at hand. It&#x27;s my goto language when I just want to throw something together, and for a few more complicated projects as well.
theoriqueover 11 years ago
<i>And I can&#x27;t seem the find features of C# in Python.</i><p>Which features of C# are you looking for in Python that you can&#x27;t find?<p>Also, keep in mind that something that is written in good, idiomatic C# might need to use different idioms in Python in order to make sense as a Python program (and vice versa).
评论 #7046964 未加载
icn2over 11 years ago
It is not just language. It is the platform behind language. You choose python&#x2F;ruby your stack probably is opensource&#x2F;linux stack. If you choose c# you probably is stuck with windows stack, (in which you don&#x27;t have a lot options like open source stack).
评论 #7046915 未加载
gte910hover 11 years ago
This screencast compares python and java very well. I think it also largely applies to C# too.<p><a href="https://archive.org/details/SeanKellyRecoveryfromAddiction" rel="nofollow">https:&#x2F;&#x2F;archive.org&#x2F;details&#x2F;SeanKellyRecoveryfromAddiction</a>
zdanozdanover 11 years ago
Check for youself, rewrite some code of yours in python ...... my guess it will be half of C# size, then try again and it will be 1&#x2F;4 and then you stick to Python .... or maybe not :-)
DonGateleyover 11 years ago
There is a performance criteria that is fundamental to the use of interpreted languages and justifies their use based on other criteria. It&#x27;s called &quot;good enough.&quot;
SandB0xover 11 years ago
Python has bindings&#x2F;libraries for everything under the sun.
mumbiover 11 years ago
If you&#x27;re a C# programmer and you want to stay one, then stay one. There are many startups out there that would love to have a skilled C# programmer, I&#x27;m sure.<p>It might depend on where you&#x27;re living, I&#x27;m not sure.<p>Also, afaik C# is open source, check out Mono. (somebody correct me if wrong)
dansoover 11 years ago
I&#x27;m sorry, but this is a pretty irritating type of question, something I would cheer to be closed if it were on StackOverflow.<p>Some of the greatest living programmers are using Python to demonstrate and build amazing things, and you have the nerve to ask people to prove to you why you should &quot;give my time to the language?&quot;. On one hand, you&#x27;re right not to just follow something just because everyone else seems to be doing it. Life is short, you can&#x27;t just walk down every path that appears to be open. On the other hand, you are asking people to use up their short lives explaining to you something that would better be found on your own.<p>You&#x27;re a developer. You already know the purpose of code and how to get started in it, in any language. You also live in the age of the Internet, where learning and trying new things in the programming world costs little more than time, thanks to the herculean efforts of open-source programmers who tirelessly make coding more comfortable for the rest of us.<p>The kind of question you ask is understandable from someone who has never programmed before. But to be a working programmer and to ask that kind of thing? Seriously?