Skip to content

Files

Latest commit

5e8adc5 · Jun 22, 2024

History

History

python-basics

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jun 18, 2024
Jun 20, 2024
Jun 20, 2024
Jun 20, 2024
Jun 17, 2024
Jun 19, 2024
Jun 18, 2024
Jun 20, 2024
Jun 22, 2024
Jun 17, 2024
Jun 20, 2024
Jan 4, 2024
Jun 20, 2024
Jan 4, 2024
Jan 4, 2024
Jan 4, 2024

Python Basic Concepts you should know

  • Python is a high-level, versatile programming language known for its readability and simplicity. It was created by Guido van Rossum and first released in 1991.

  • Python uses indentation for blocks, instead of curly braces. Both tabs and spaces are supported, but the standard indentation requires standard Python code to use four spaces.

  • Python is completely object oriented, and not "statically typed". You do not need to declare variables before using them, or declare their type. Every variable in Python is an object.

  • In python, Strings are defined either with a single quote or a double quotes.The difference between the two is that using double quotes makes it easy to include apostrophes (whereas these would terminate the string if using single quotes)