You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
- Agreed, Python is not a toy language... However, many of the organizations at my company use Java extensively, and we will need to interface with their code, and therefore it is a requirement that we bring on people with a strong Java background. Plus it's not so much the perception of the people who understand software that is a concern - it's the perception of those who don't. Those are the people who want a name they've heard before, and that name is "Java"... I would love us to build up a team committed to Python as a primary language, but that will be difficult.BobIsNotMyName– BobIsNotMyName2013-11-16 17:23:24 +00:00Commented Nov 16, 2013 at 17:23
- 1Even if you prototype in Python and rewrite part or all of it in Java, that's not necessarily a bad thing (python doesn't have the performance profile that some applications need). Having "heard" of a language is not exactly a ringing endorsement. Given the choice, I would personally choose some other language than Java, but other forces often dictate language choice.Robert Harvey– Robert Harvey2013-11-16 18:00:56 +00:00Commented Nov 16, 2013 at 18:00
- @Robert Harvey: "Isn't rapid prototyping (i.e. iterative and incremental development) sort of the whole point of Agile?": As far as I understand, rapid prototyping means to make a quick, throw-away prototype and, after the customer has approved it, to build a real product (with proper design, etc). In agile you have a compromise between the two: you always have a prototype that is technically "good enough" (probably not as good as a system that has been designed upfront, but good enough for production) so that it can be delivered as a product as soon as the customer is satisfied with it.Giorgio– Giorgio2014-04-23 10:20:50 +00:00Commented Apr 23, 2014 at 10:20
- 1@Giorgio: That's fine, but customers don't know what they want until you show it to them and they say "no, that's not what I want, I want this." Whether you do that in code or on a piece of paper makes no difference to me, so long as it identifies what the customer wants.Robert Harvey– Robert Harvey2014-04-23 15:31:48 +00:00Commented Apr 23, 2014 at 15:31
Add a comment |
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. design-patterns), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you
lang-py