Python

Python if…else Statement

Decision making in Python structures have one or more conditions to be evaluate or test by the program, along with a statement or statements that are to be execute if the condition is determine to be true, and optionally, other statements to be execute if the condition is determine to be false.

Python

Introduction To Python

Python is a general-purpose language. It has wide range of applications from Web development
(like: Django and Bottle), scientific and mathematical computing (Orange, SymPy, NumPy) to desktop
graphical user Interfaces (Pygame, Panda3D). Python is a fairly old language create by Guido Van Rossum. The design began in the late 1980sand was first released in February 1991.

java

Multithreading in Java

Multithreading is the process to achieve multitasking feature. Actually, using multithreading concept, we can execute more than one process concurrently with java program. We know every java program is a process and that may contain various sub-process. If we want to execute these sub-processes simultaneously within process or program than multithreading required.