Skip to main content

let's start the python journey

 About Python

  • What is Python?
        Python is a high-level, general-purpose programming language.
  • What is the use of Programming Language ?
        Calculator
        Ticket Book Application
  •  Features of python 
  Free and Open Source.
  Easy to code.
  Easy to Read.  
  Object-Oriented Language.  
  GUI Programming Support. 
  High-Level Language.  
  Extensible feature. 
  Easy to Debug
  • Level of Programming Language
High 
Low 
Medium

  • Guido van Rossum -- In the year 1989 Father of Python
  • What are the Prerequisites ?
No Prerequisites require

  • Python IDLE 
     Python IDLE offers a full-fledged file editor, 
which gives you the ability to write and execute Python programs from within this program. 
The built-in file editor also includes several features, like code completion and automatic indentation,
that will speed up your coding workflow.

  • Running your first program
Print ('Pranav')

Comments

Popular posts from this blog

NGINX Web App Deployment for DevOps

  Step 1: Create AWS instance. Step 2: Install NGINX Step 3: Install docker and create a Container for note-app. Step 4: Set up a reverse proxy. Step 5: Copy the code to the root folder. Step 6: Connect the database nginx specification Step 1: Create AWS instance. Log in to the AWS account and create an ec2 server. Nginx is a web server that will serve you static web files. So we require a server. - Create an EC2 instance and name it 'nginx-project-demo'. Also, don't forget to allow HTTP and HTTPS traffic. ( For sake of practice, let's select an Ubuntu machine with t2.micro instance type) Update your server using the command.   sudo apt-get update Step 2: Install NGINX Now install Nginx using the command below. sudo apt install nginx Check the status of nginx. systemctl status nginx Restart the nginx server with root user permission. sudo systemctl restart nginx To check further nginx is successfully installed on your server is to use the server IP and paste it into the

Day 04 — Basic Linux Shell Scripting

Explain in your own words and examples, what is Shell Scripting for DevOps. What is #!/bin/bash? can we write #!/bin/sh as well? Write a Shell Script which prints I will complete #90DaysOofDevOps challenge Write a Shell Script to take user input, input from arguments and print the variables. Write an Example of If else in Shell Scripting by comparing 2 numbers Was it difficult? 1. What is Kernel The kernel is a computer program that is the core of a computer’s operating system, with complete control over everything in the system. 2. What is Shell A shell is special user program which provide an interface to user to use operating system services. Shell accept human readable commands from user and convert them into something which kernel can understand. It is a command language interpreter that execute commands read from input devices such as keyboards or from files. The shell gets started when the user logs in or start the terminal. 3. What is Linux Shell Scripting? A shell script is a

Devops on AWS

  SDLC Model - Software Development Life Cycle Waterfall Model Agile Model Waterfall Model Disadvantages of Waterfall Model It is difficult to estimate time and cost for each phase of the development process.  Once an application is in the testing stage, it is very difficult to go back and change something that was not well-thought out in the concept stage.  Not a good model for complex and object-oriented projects.  Not suitable for the projects where requirements are at a moderate to high risk of changing. Agile Model Agile development model is also a type of Incremental model. Software is developed in incremental, rapid cycles. This results in small incremental releases with each release building on previous functionality. Each release is thoroughly tested to ensure software quality is maintained. Agile software development method emphasis on iterative, incremental, and evolutionary development. Delay In spite of the Model, still delay? Gap between development team and operations te