At the my first view , python programming language is :
  • easy to lean.
  • object oriented.
  • dynamic type.
  • interpreting language.
  • suitable for scripting.
  • suitable for rapid development.
  • cross platform.
  • and ...
Python is simple to use, but it is a real programming language, offering much more structure and support for large programs than shell scripts or batch files can offer. Python is an interpreted language, which can save you considerable time during program development because no compilation and linking is necessary. Programs written in Python are typically much shorter than equivalent C, C++, or Java programs.

# my first python program
print("hello word")
input()

have a nice time.