Java Continue Statement – How To Use Continue In Java

Java continue statement (1)

This tutorial explains how to use the Java Continue Statement in various scenarios while dealing with the loops with the help of programming examples: In this tutorial, we will discuss Java’s “Continue Statement” – one of the jump statements that Java supports. Here, we will cover the topic in detail …

Read more


Java Break Statement – Tutorial With Examples

Java break statement

Learn about the Java Break statement with the help of practical programming examples of how to use Break in Java programs: In this tutorial, we will discuss another Jump statement of Java i.e. break statements. We will explain the break statement with description, programming examples, and see how to use …

Read more


How To Convert Char To Int In Java [With Examples]

Convert character to int in Java

In this tutorial we will learn the different ways to convert values of primitive data type char to int in Java along with FAQs and examples: We will be covering the use of the following methods provided by different Java classes for converting character to int : Implicit type casting …

Read more


PHP Vs HTML – What Is The Difference Between PHP And HTML

PHP vs HTML

Learn about the differences between PHP vs HTML and how to use them together: This tutorial aims at explaining PHP and HTML in detail. Both are languages used for developing the web application, we will explore the areas of their use. We shall also learn about the benefits of the …

Read more


Python List Comprehension Tutorial With Examples

list comprehension

In this tutorial we will learn what is Python List Comprehension and how to use it in Python programs using programming examples: Professional programmers are constantly looking for ways to write code that is more readable and often faster at the same time. The good news is that, when it …

Read more


Common Python List Methods With Syntax And Examples

Python List Methods

Tutorial explains the syntax and usage of common Python List Methods such as add to list, sort list, pop, append, copy, remove, reverse etc.: Python lists are not just used to store data. There are powerful data structures if used correctly. However, we can’t use them effectively if we don’t …

Read more


Python List Functions – Tutorial With Examples

Python List Built-in Functions

This tutorial explains some useful Python List Functions with the help of syntax and programming examples: Though lists have methods that act on its object directly, Python has built-in functions that create and manipulate lists in-place and out-of-place. Most of the functions we shall cover in this tutorial will apply …

Read more


8 Methods To Convert An Integer To String In Java

Java method to convert int to String

In this tutorial we will explore the different methods to convert Integer to String in Java along with interesting programming examples: We will be covering the use of the following methods provided by the different Java classes to convert Int to String in Java: String concatenation String.valueOf() String.format() Integer.toString() Integer.String(int) …

Read more


Java Switch Case Statement With Programming Examples

Java Switch statement (1)

Learn about the Java Switch Statement, Nested Switch, other variations and usage with the help of simple examples: In this tutorial, we will discuss the Java Switch statement. Here, we will explore each and every concept related to the Switch statement along with the programming examples and their description. You …

Read more


Java Do While Loop – Tutorial With Examples

Java do-while loop

This tutorial will explain how to use the Do While Loop in Java with examples: In this tutorial, we will discuss the third iteration statement of Java (after for loop and while loop) i.e. the “do-while loop”. We will explore this iteration statement along with the syntax and programming examples. …

Read more


Java While Loop – Tutorial With Programming Examples

Java while loop

In this tutorial, we will discuss  Java While Loop, comparison between For Loop vs While Loop, etc with programming examples: All the necessary details related to Java while loop will be explained in this tutorial. It includes the syntax, description, and some relevant programming examples along with the logic of …

Read more


How To Convert Java String To Int – Tutorial With Examples

Java method to convert String to int

This tutorial explains the ways to convert Java String to Integer using Integer.parseInt and Integer.ValueOf methods with code examples: We will cover the following two Integer class static methods that are used to convert Java String to int value: Integer.parseInt() Integer.valueOf() => Check ALL Java Tutorials Here Java String To …

Read more


Python Try Except – Python Handling Exception With Examples

Handling Exception in Python

This tutorial explains Exception Handling in Python using the Try Except block with the help of programming examples: Two error types may cause a Python program to stop abruptly i.e. Syntax Errors, and Exceptions. In this tutorial, we will be discussing the second error type (Exceptions) under several important topics. We …

Read more


Flask Database Handling – How To Use Flask With A Database

How to Use Flask with a Database_

In this Flask database tutorial, learn to use Flask with various databases, such as Flask MySQL, Flask MongoDB, SQLite, etc. We will extend the concepts covered in our first Flask Python tutorial. We start by using Flask with MongoDB, a document-based NoSQL database, where NoSQL stands for Not Only SQL. …

Read more


Flask Template, Form, View, And Redirect With Examples

Flask Templates, Views, and Forms

This tutorial explains what are Flask Template, Form, View, Response, And Redirect With practical examples: In general, Templating is used in Programming, to reuse a portion of text with different data. Concerning Web development, Designers use templates to display data in a form that is readable and attractive to human …

Read more


Python Flask Tutorial – Introduction To Flask For Beginners

Flask Python Tutorial

This introductory Python Flask tutorial explains what is Flask, installation of Python, Virtualenv, Flask Hello World example with a section on code examples, debugging, and testing: Website development is more of an art than a skill. It requires patience and diligence, along with perseverance, courage, and dedication to create what’s …

Read more


Flask App And Flask Project Layout With Blueprint & Bootstrap

Flask Project Layout with Blueprint and Bootstrap 1

This tutorial explains how to use Flask App, Flask Blueprint and Flask Bootstrap in a Flask project: In this topic, we will move a bit away from the archetype of Flask-Appbuilder to build our understanding of Flask Blueprints. Read our tutorial on Flask, Flask Templates & Views, and Flask with …

Read more


Flask Design Patterns And Best Practices For Web Applications

Flask Patterns for Web Applications

This tutorial explains some of the common Flask design patterns and best practices to follow while designing web applications with examples: Application design is an essential aspect of software development. An unplanned application design results in insurmountable technical debt. Therefore, whenever we want to scale our application, then it is …

Read more


Flask API Tutorial With Example | Extending Flask With APIs

Flask Extensions with Examples

This Flask API Tutorial explains popular Flask extensions like Flask twitter Oembedder, Flask API, and Flask RESTful with examples: The Flask framework has quite an abundant number of extensions. These extensions are quite useful and are easy to be developed. We know that the Flask framework is very Pythonic and …

Read more


Django Vs Flask Vs Node: Which Framework To Select

Which Framework To Select_ Django vs Flask_

Flask and Django are Python-based web development frameworks. This tutorial compares Django vs Flask in detail. Flask vs Node is also covered briefly: It has always been a pervading dilemma when it comes to the question of selecting a Framework for your next project. Every few months, you see new …

Read more