Docker Python Example

Run Python Application with Docker You can run a Python script using Docker containers. This tutorial will help you to run a Python script over command line within Docker isolated environment. Run Python Example within Docker Create Python Script – First, create a sample Python script to run on web server under the Docker container. Edit script.py in your favorite text editor. nano script.py Add the following content:

Create Dockerfile – Next create a file named Dockerfile under the same directory. Edit Dockerfile in a text editor: nano Dockerfile…

Read More

Python – Indentation

Python Indentation In Python, The indentation is the white space at the beginning of a line to define scope. Generally the other programming languages uses brackets to defined the scope of a function, loop etc. Python uses indentation instead of brackets for this purpose. Python Indentation Example Open a Python terminal and run below example: a = “Rahul” def myfun(): b = “TecAdmin” print(a) print(b) myfun() In above example, line number 3,4 and 5 have blank spaces before them. This is known as indentation. You can use any number of…

Read More

Python – Variables

Python Variables and Assignment A variable is a name, which represents a value. To understand it, open a Python terminal and run below command. id = 10 You will not see any result on screen. Then what happens here? This is an assignment statement, where id is a variable and 10 is the value assigned to the variable. A single equal (=) is an assignment operator. Where left side of the operator is the variable and right side operator is a value. Once a value is assigned to the variable,…

Read More

Python – Introduction

Python Introduction Python is a popular, high-level programming language known for its simplicity, readability, and flexibility. It is widely used in a variety of applications, including web development, data analysis, scientific computing, and artificial intelligence. One of the key features of Python is its dynamic, strongly typed nature, which means that you don’t have to specify the type of a variable when you declare it, and the type of a variable can change at runtime. This can make Python code easier to write and maintain, but it can also make…

Read More

Python – If…else

Python if else Statments If-else is the decision making statements in Python programming language similar to any other programming. Where execution of a block of statement is decided based on the result of if condition. If it evaluates a condition to true, then if block code is executed, on the false condition, the else block code is executed, which is optional. Basically, there are 4 types of if statements. if statement if-else statement else-if ladder statement nested if statement 1. Python – if Statement Example This is simple if condition,…

Read More