cncinfotech
Feb 17 2008, 07:05 PM
| | There are so many languages used in software and web development. Python is one of them. Basically Python is object-oriented, high-level programming language with dynamic semantics. Python was developed in the 90’s. Python is simple and easy to learn. Therefore it reduces cost of program maintenance. It is very attractive for rapid application development because of its high-level built-in data structures, combined with dynamic typing and dynamic binding. Python is also use as a scripting or glue language to connect existing components. Python supports modules and packages, which encourage program modularity and code reuse. The Python interpreter and the extensive library are available in binary form free of cost for all major platforms. In Python, there are some built in powerful high-level data types. You can add module and extend it in a semantic fashion just like C or C++. These modules can be define variable and new functions as well as new object types. My one friend (who is a programmer) because of it’s productivity. |
Reply
sonesay
Feb 17 2008, 07:17 PM
I'm just wondering since I'm assuming you have used it a bit to be talking about it. How does it compare to other web developing languages like php asp and all the others you may of tried. I wish I had more time to try out more languages but sticking to one does help you improve me. maybe I'll give it a shot and see whats it all about if you can give examples of what sites are written in python.
Reply
coolcat50
Feb 17 2008, 07:35 PM
Python is not very commonly used for web programming I don't think. It is a way to program CGI with mod_python. I think Perl is still the most popular language for CGI. If you want to see the power of Python check out Frets on Fire. It is a good Guitar Hero clone for your computer. You can make your own songs with it also. I think there was a topic on it in Trapinion.
Reply
hippiman
Feb 18 2008, 01:11 AM
The only reason I even know what Python is, is because of Blender, the 3D animation program. It lets you use Python scripts so you can make your own functions and stuff you help with your work flow or whatever. I started to look into it, but I didn't like the syntax at all. Java is the best that I've found so far, except that it's usually limited unless you get swt or something, because you can load DLLs so you can do anything you can in C++.
Reply
medievalhellspawn999
Feb 18 2008, 01:58 AM
Another good example of a Python implementation is Zenoss (network monitoring)--it is one of two great open source networking monitoring tool out there.
Reply
FLaKes
Feb 18 2008, 09:12 AM
Interesting, anybody know any famous or popular applications that are developed with python? I am really interested in learning how to program either in java or .net, and maybe python, but I only have time for one of them.
Reply
darran
Feb 18 2008, 09:27 AM
I am a little confused on this programming language. I do know of PHP, ASP, JSP ... etc are used for server scripting and Java for software development. But what field does Python and Ruby actually work on? The founder of WordPress did mention about Python in an interview with Yahoo!. http://developer.yahoo.net/blog/archives/2...-mullenweg.html
Reply
suberatu
Feb 24 2008, 10:03 PM
From my experience with Python (which I admit is not much) I think it's a pretty good language. Transitioning from C++ or Java to Python is pretty simple because it's a language that's very easy to comprehend. That being said, I haven't seen it used for web development either, but it's great for some desktop applications (for example, the game Tendrils).
Reply
dwolters
May 18 2008, 10:01 AM
Python is one of the best starter languages if you want to learn to program. Most programming classes in college start with this language. Its object oriented, like c++ or java, But much easier to code. For example in C++, the main bulk of you program has to be wrapped in a function: CODE #include <iostream>
int main() { std::cout << "Hello, world!\n"; } making the output: Hello, world! The same program in python is: CODE print "Hello, world!" You can make anything from scripts to games with it. Once you are comfortable with python, it is fairly easy to transition to a different language. But the thing i like about Python, is it gives you the knowledge to "think like a programmer". And once you're thinking like a programmer, the learning curve on learning any programming language declines. Feel free to ask any questions. and i will gladly help you start with python!
Reply
Similar Topics
Keywords : python, programming, language
- A Prelude To Programming
What to learn? How to learn? (9)
Python
(1) Can anyone tellme what Python is... i have read it on a lot of webhosting sites......
[pygame] Python Game
(4) On this tutorial we will see how to draw a circle on the screen and move it around using the arrows
of the keyboard. (Don't worry if you don't get anything, the code will be analysed line by
line) CODE #!/usr/bin/env python import pygame from pygame.locals import * if not
pygame.font: print 'Atention, there are no fonts.' if not pygame.mixer:
print 'Atention, there is no sound.' pygame.init() red = (255, 0,
0) black = (0, 0, 0) window_width = 640 window_height = 480 window = pygame....
Python Manace: Control Flow I
python tutorial (3) Hello This is the first part of my Python tutorial. The code is pretty self-explanatory so few
comments should be enough. If not - let me know. Tutorial assumes that You have already Python
installed. Python 2.4 should be enough. Let's go, then. #! /usr/bin/env python # -*-
coding: utf-8 -*- import math def squareRoot_1( lst ) : """Returns list of square
roots. No negative number validation. Allows fractions in result.
""" result = for el in lst : sqrtFloat = math.sqrt( el ) ....
Things You Should Know
things you should know about programming (0) This should help you know what programming languages are. C# is a language designed by Microsoft
for the .Net framework. Its syntax is similar to C and C++, with an emphasis on being programmer
friendly. It has memory management where C and C++ require the programmer to do this manually, it
has array bounds checking where C and C++ don't, among many other differences. Automatic memory
management and some other programmer-friendly features of C# sacrifice some performance, but these
features can also make development faster and easier. This can be very attractive to ....
Python
Programming Language (4) Does anybody else know any python? I've started learning it, because I heard somewhere that it
is quite easy to learn and I want to learn a programming language quickly /smile.gif"
style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />. I haven't learned how
to do any complex stuff with it yet, but its still fun learning about it /smile.gif"
style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />. If you want to find out
more info about Python, then you can go to their website. I'm not sure if i'm allowed to
post links....
Mac Programming Languages?
What are some good ones? (5) What are some good Mac Programming Languages? /huh.gif" style="vertical-align:middle" emoid=":huh:"
border="0" alt="huh.gif" /> I have a friend from school who is like obssed with Mac and Linux (And
thinks windows sucks when it doesn't /mad.gif" style="vertical-align:middle" emoid=":angry:"
border="0" alt="mad.gif" /> ), and it would be cool if I could learn some Mac Programming languages
aside from what I already know about Programming, so I could make some cool programs for mac too,
show off, and beat him at his own game. /laugh.gif" style="vertical-align:middle....
Password Generator
Made in Python (9) This is a Password Genorator i made in python use Tkinter as the GUI. I will Compile it soon so
people with out Python can use it. here is the source code CODE import random, math from
Tkinter import * root=Tk() root.title("PassGen") length = Label(root,
text="password length:") length.pack() input = Entry(root,
text="8") input.pack() input.insert(0, "8") units =
"abcdefghijkmnopqrstuvwxyz0123456789" password = Label(root,
text="password:") pas....
Fib Gen In Python
(1) OK this is one of my first programs.. from Tkinter import * CODE def NextNumber():
count = 0 x = 0 y = 1 while count <= int(Range.get()):
for item in [x]: listbox.insert(0, item) z = x
x = z + y y = z count = count + 1 root = Tk() Title =
Label(root, text = "Calculate fib number:") Title.pack() Range =
Entry(root) Range.pack() PrintNextNumber = Button(root, text = " Display
", ....
Programming Batch Job
(6) I want to know how to make a batch file that will run a program at a certain time of day, like a
scheduled thing, but i want it in a batch.. lol.. Easy enough? If you give me permission i can edit
it to the program i want Lol.. just put it in code tags! Thanks! Topic title must be
specific. Modified. ....
Future Of Programming...
Real Programmers Respond Please (6) I was watching Star Trek the other day, I think it was Voyager. Anyways I was wondering.. They refer
to this 'trinary' code and other things like Tera Quads of information. I researched this a
little bit and all I could find were entries about it relating to Star Trek and nothing else really.
So I was wondering, does anyone really know or have a really good explanation of what is on the
horizen for programming? Because I'm sure that since we created Binary and so many other ways to
make computers work, isn't there something in the future to be made that w....
Sql Programming By Heaven_master_ash Own
(1) Well This Is A Very very Easy Topic Every One Know About This thing If U Need Help To Understand
Better Refer My Knowledge Gatherance Thanx.. CODE The SQL SELECT statement queries data from
tables in the database. The statement begins with the SELECT keyword. The basic SELECT statement has
3 clauses: * SELECT * FROM * WHERE The SELECT clause specifies the table columns
that are retrieved. The FROM clause specifies the tables accessed. The WHERE clause specifies which
table rows are used. The WHERE clause is optional; if missing, all table rows ar....
Programming Artificial Intelligence
oh yeah... (4) I've been interested in the idea of working with AI later on in my career when I actually get
the resources to do so (After college is finished). Does anyone here already know how to program
basic AI that might be able to help get me started?....
Shakespeare Programming Language
(2) http://shakespearelang.sourceforge.net/report/shakespeare/ This is a weird language whose syntax
is kind of like a play. It may not seem like it can do anything, but it's actually more powerful
that it looks. The programs are much longer than those in any other language, but SPL is more fun.
Unfortunately, there's no compiler-it has to be translated to C, then compiled from there. There
are some example programs at the bottom.....
Programming From Ground Up
Best book for learning programming (1) This is one of the best book for learning programming with assembly language. This is a free book
with GPL licence so this is not illegle This tutorial section states that QUOTE Contribute
only full How-To's and Tutorials here. I feel that you did not contribute. Contribute is
defined here as writing your own with your own words--we are looking for original tutorials. But
thank you for the supplement. Moving from Tutorials to Computers > Programming Languages >
Others Leaving a link behind ....
What Programming Language Is Most Popular In Industry
What Programming language is most popular in industry (6) Hi All, I don't see any thread discuss about the pros and cons of different languages to help
beginners, but i'm asking for a slightly different reason. I have been programming for about 1
year now, and I know only Visual Basic. I am planning to learn some other programming langauges.
I've learned that once you've learned one language, pretty much all you have to do is learn
a new syntax to learn a new language. So, now I'll get to the point. I think that I should begin
to specialize in a language. I don't know which language I should learn and ....
Delicious + Gmail
python (2) I stumbled upon this link earlier today and was hoping someone could explain or walk me through
getting the script running. http://ponderer.org/del.icio.us I'll keep the post short since I
have no clue as to what I should. I'll just say that I rarely work on WinXP and I would rather
get it running on my old win box sitting in the corner. ....
Tried Logical Programming?
(2) Has anyone every looked at logical programming yet? I am interested in all sorts of programming
paradigms. Logical programming looks kind of neat. Apparently it can be used to generate you own
language parson. I found a fairly gentle introduction to prolog at: It gives some simple code to
some neat problems http://www.csupomona.edu/~jrfisher/www/pro...l/contents.html You can also
download a free compiler at: http://www.freeprogrammingresources.com/lispcompiler.html ....
Short Programming Example (in Many Languages)
(9) I want a thread where I can see how to solve a Varity of programming problems in many languages. The
idea is so I can read short examples to become fluid in many languages. Both reinforcing what I know
and learning new stuff. The problems should have a short solution and be solvable in many different
languages. Web applications are alright but make some reference on how the code is used (e.g. CGI).
The poster can provide the problem and as many different solutions as he likes. For example:
Problem 1. Write a function to compute a factorial. Solution Soln. (problem 1.) ....
Newb @ Programming Seeking Suggestions
(3) Hey all, I'm new to programming and I have a hard time deciding on a cross-platform language
so I can write for Linux, Macintosh, and Windows. I want to make some basic programs, and if
possible (as in language support), games. I know that Java is one of them, so is Perl. Please
reply. Thanks, xboxrulz....
Need Help With My Python Programs
just extremely basic stuff (11) ok, i am learning python, and i realy dont know much. my guide im using said to make a program
where it asks your name, and if the name is yours your make it so there is a compliment, if it is
another name you make it that its an insult, and anything else makes it say Nice name. here is what
i wrote name = raw_input("What is your name?") if name == John: print "Your name is freaking
sweet, you must be a god or something." elif name == Bob: print "You have a freakin' weird
name, dude." else: print "Nice name,",name i donot understand what i am doing w....
Ok, So I'm Learning Python...
(3) I was wondering, can I make games in python, even simple text based ones? me and my friend wanted to
start making homebrew games, and we decided to start out learning python. I've learned a bit,
not much, but enought to make one of those conversations with the computer, like with loops and
where they ask questions like "what is your name?" and then say it back etc. We plan on also
learning C++, which we will learn later after we get real good with Python. However, will I
eventually be able to make games with Python?....
Pascal Programming
(5) I don't se any sub forum for pascal so I will post this here, I have some problems, how to set
this: i need to create program for seraching and deleting some files, if you have some examples or
source code that will be great, and how to create some skin, or I don't know to create one
normal program not the one like the dos thanks....
Programming Paradigms
(0) This discussion is created to discuss current programming paradigms and propose new programming
paradigms. First Some thoughts: Functional programming is often used in AI languages because it
allows a top down design approaches. The program can begin by describing the high level
functionality and later flesh out the low level details. This is in contrast to procedural
programming in which the problem is first broken down into smaller problems. The smaller problems
are solved and then put together to solve the larger problem. One functional programming is called
lisp.....
Palm Os Programming?
(2) Can anybody point me to some nice tutorials for Palm OS programming? I've got both a windows and
a linux machine, but windows is prefered. (my linux box is currently non-functioning)....
What Programming Languages Do You Use?
(26) So? What do you use? I use Turing ....
Programming E-books
and others too (0) Here it is: CODE http://n3t.net/TheVault/Library/ Username: ap Password: appz
Carpe diem.....
Ftp With Lots Of Programming Books
Don't wait to see (5) Here it is: CODE http://ftp.cdut.edu.cn/pub3/uncate_doc/ Carpe diem.....
TCL
Web programming with TCL (3) I was just wandering whether there are some old timer there using TCL to do CGI programming. It
would be nice to hear some of the experiences you have had with it. I had to use it for something
really specific, but now it turns out to be quite fun using it for CGI related situations.....
Looking for python, programming, language
|
|
Searching Video's for python, programming, language
|
advertisement
|
|