3 BIT python programming

In this blog you can learn python from basic level to advanced level completely for free

ads header

Tuesday, 11 April 2023

' HELLO PYTHON ! ' and SYNTAX

 

What is python ???


Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development, as well as for use as a scripting or glue language to connect existing components together. Python's simple, easy to learn syntax emphasizes readability and therefore reduces the cost of program maintenance. Python supports modules and packages, which encourages program modularity and code reuse. The Python interpreter and the extensive standard library are available in source or binary form without charge for all major platforms, and can be freely distributed.


Hello, World!

Print()


#first python program
#Hello Python
print("Hello Python")

Python is a very simple language, and has a very straightforward syntax. It encourages programmers to program without boilerplate (prepared) code. The simplest directive in Python is the "print" directive - it simply prints out a line.

syntax of print():

print("any thing you type appear when you execute the code")

note: you can use single quotes or double quotes inside print() there is no issue in python about quotes like other programming languages

Python SYNTAX

Python Indentation

Indentation refers to the spaces at the beginning of a code line.

Where in other programming languages the indentation in code is for readability only, the indentation in Python is very important.

Python uses indentation to indicate a block of code.



#JUST AN EXAMPLE FOR INDENTATION
if 10 > 9:
  print("10 is greater than 9!")
#WRONG SYNTAX
if 10 > 9:
print("10 is greater than 9!")
note: you can use tab button in your keyboard to get correct indentation and escape from indentation errors

Comments in python

python interpreter exclude the lines with # on beginning of the line

Comments can be used to explain Python code.

Comments can be used to make the code more readable.

Comments can be used to prevent execution when testing code.

There is another way to write multi line comment by using triple quotes in the beginning and at the end of the text what you need to be commented 



#This is a single line comment in python
#These line will not be excecuted by interpreter

print('Hello Python')

"""
THIS
IS 
A
MULTI
LINE
COMMENT
"""
print('Hello World')

Monday, 10 April 2023

CONTENTS

Saturday, 1 April 2023

HOW TO INSTALL PYTHON ?

                                                   

LINKS TO INSTALL PYTHON      


Downloading Python       


              On many systems Python comes pre-installed, you can try running the python command to start the Python interpreter to check and see if it is already installed. On windows you can try the py command which is a launcher which is more likely to work. If it is installed you will see a response which will include the version number, for example:


Python 3.9.6 (tags/v3.9.6:db3ff76, Jun 28 2021, 15:26:21) [MSC v.1929 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.


If you don't see this, you will need to install Python on your system.

If the version number is Python 2.x.y (where x and y are any number) you are using Python 2 which is no longer supported and is not a good choice for development. You can try running python3 to see if there is also a Python 3.x.y version installed, if not you'll want to install the latest version of Python.

If you do not have Python installed or need a newer version you can go to:

https://www.python.org/downloads/

which will provide a button to download an installer for your particular system. The Python documentation also has a detailed guide on how to install and setup Python here:

https://docs.python.org/3/using/index.html

Below are some system specific notes to keep in mind.

Windows

On Windows the most stable build is available from the official download page

https://www.python.org/downloads/

You should download and run the installer from that page to get the latest version of Python for your system. You can refer to the Python documentation for more details on the installation process and getting started:

https://docs.python.org/3/using/windows.html

Mac

For macOS 10.9 (Jaguar) up until 12.3 (Catalina) the operating system includes Python 2, which is no longer supported and is not a good choice for development. You should go to do the downloads page: https://www.python.org/downloads/ and download the installer.

For newer versions of macOS, Python is no longer included by default and you will have to download and install it. You can refer to the Python documentation for more details on the installation process and getting started:

https://docs.python.org/3/using/mac.html

Linux

On most Linux distributions Python comes pre-installed and/or available via the distribution's package managers. Below are some common examples, but refer to your specific distribution's documentation and package list to get the most up to date instructions.

If you'd like to download and build Python from source (or your distribution's package manager does not include a version of Python you need) you can download a source tarball from the general download page: https://www.python.org/downloads/

Red Hat, CentOS, or Fedora

dnf install python3 python3-devel

Debian or Ubuntu

apt-get install python3 python3-dev

Gentoo

emerge dev-lang/python

Arch Linux

pacman -S python3

from python.org 


Search This Blog

Powered by Blogger.

' HELLO PYTHON ! ' and SYNTAX

  What is python ??? Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level bui...