Blog

python tutorials and learn python

Created with Sketch.

Python Variables

Python Variables   Summary: in this tutorial, you’ll learn about Python variables and how to use them effectively. What is a variable in Python? When you develop a program, you need to manage values, a lot of them. To store values, you use variables. In Python, a variable is a label that you can assign…
Read more

Python Syntax

Python Syntax   Summary: in this tutorial, you’ll learn about the basic Python syntax so that you can get started with the Python language quickly. Whitespace and indentation If you’ve been working in other programming languages such as Java, C#, or C/C++, you know that these languages use semicolons (;) to separate the statements. Python,…
Read more

Python Basics

Python Basics   In this section, you’ll learn the basic Python. If you’re completely new to Python programming, this Python basics section is perfect for you. After completing the tutorials, you’ll be familiar with Python programming. Section 1. Fundamentals Syntax – introduce you to the basic Python programming syntax. Variables – explain to you what…
Read more

Python Hello World

Python Hello World   Summary: in this tutorial, you’ll learn how to develop the first program in Python called “Hello, World!”. If you can write “hello world” you can change the world. Raghu Venkatesh Creating a new Python project First, create a new folder called helloworld. Second, launch the VS code and open the helloworld…
Read more

Setup Visual Studio Code for Python

Setup Visual Studio Code for Python   Summary: in this tutorial, you’ll learn how to set up Visual Studio Code for Python. A quick introduction to the Visual Studio Code Visual Studio Code is a lightweight source code editor. The Visual Studio Code is often called VS Code. The VS Code runs on your desktop.…
Read more

Install Python

Install Python   Summary: in this tutorial, you’ll learn how to install Python on your computer including Windows, macOS, and Linux. Install Python on Windows First, download the latest version of Python from the download page. Second, double-click the installer file to launch the setup wizard. In the setup window, you need to check the…
Read more

What is Python

  What is Python? Python is an advanced programming language that enables software developers to construct applications unlike any other language. Python is highly readable and simple to grasp which ultimately leads to efficient and reliable products. This makes Python an outstanding option regardless of whether you are a beginner learning to code or a…
Read more

Getting Started with Python Programming

Getting Started with Python Programming This section helps you get started with Python programming. After completing this section, you’ll have a basic understanding of the Python programming language. And you will know how to set up the necessary tools on your computer to start programming in Python. What is Python Learn about what Python is…
Read more

Java hello world program

  Java hello world program “Hello world” program in Java to display “Hello world” on the screen. How to write hello world rogram in Java? class HelloWorld { public static void main(String args[]) { System.out.println(“Hello World”); } }   “Hello World” is passed as an argument, to the println method, you can print whatever you…
Read more

If else program in Java

  If else program in Java The if-else Java program uses if-else to execute statement(s) when a condition holds. Below is a simple application that explains the usage of if-else in Java programming language. In the program, a user input marks obtained in an exam, and we compare it with the minimum passing marks. We…
Read more