Today I am writing about python basics. Python is a high level, scripting language. Linux terminal is used as a interpreter for python. Python is an object oriented programming language, it use very few punctuation for construction of syntax but follows indentation very strictly.
write basic python program:
#!/usr/bin/python
def main():
print "Hello World!!!!!"
if __name__=="__main__":
main()
$python Hello_World.py
No comments:
Post a Comment