Part 14: GCP: How to create docker container in GCP ?
In GCP, we can create a container for our application and can deploy it in five simple steps. Lets have a look at these steps below. I. Steps involved in...
Variables in Linux can be made read only using the keyword “readonly”. For example, if we want a variable to contain a value say 10 and must not be changed...
Lets look how to create functions in python. For example:- We will create two functions: 1. To say “Hello World” to the world. 2. To square a number and get...
In this post, we will look how to define and use functions in python. To understand this, lets see an example below. Using Functions in Python In python, the function...
Today we will look how to define and use arrays in python. To understand this, lets have a look at a program. Using Arrays in Python user@ngelinux:python$ cat sixth.py #!/usr/bin/python...