Important Notice:

Introduction To Python

Introduction To Python

17 views 1 min read

Python Programming Language

Python is a high-level, interpreted language created by Guido van Rossum in 1991.

Features

  • Simple and readable syntax
  • Interpreted (no compilation)
  • Dynamically typed
  • Object-Oriented
  • Portable (runs on any OS)
  • Large standard library

First Programprint("Hello, World!")Variables & Data Typesname = "Rahul" # String\nage = 20 # Integer\nmarks = 95.5 # Float\nis_pass = True # BooleanInput & Outputname = input("Enter name: ")\nprint("Hello,", name)

Related Notes