top of page
Writer's pictureRhash Algo

Module 1: An introduction to Python

What can Python do?

  • Build websites and software

  • Automate routine tasks

  • Data Analysis

  • Game Development

Why Python?

  • General Purpose Language

  • General & App-Specific Testing

  • Finance & Trading

  • Automation & Administration

  • Data Science

  • Data Analysis

  • Scientific and mathematical computing

  • Computer Graphics

Good to know

Basics of Programming


Python Syntax

Python is an interpreted and dynamically typed language, whereas Java is a compiled and statically typed language. Python code doesn't need to be compiled before being run. Java code, on the other hand, needs to be compiled from code readable by humans to code readable by the machine.

Follow this for more details.


Python Install

Please follow this link for more details on installation.


2 views0 comments

Recent Posts

See All

Misc 1: Pytest

Installation: pip install -U pytest Pytest Version: $ pytest --version pytest 7.1.1 First Test File Name: test_first.py def samp(x):...

Module 2: Beginning Python Basics

The Print Statement Comments Python Data Structures String Operations Simple Input & Output Simple Output formatting Operators in Python

Comments


bottom of page