Syntax, runtime and logical errors

Syntax errors Are errors in the code that the computer cannot interpret, and then the program stops. In Python these errors are often: Spelling errors The omission of important characters (such is a missing colon) Inconsistent use of ‘/’ or Leer más…

Printing different values

In the given example, we are printing different values like integer, float, string and Boolean using print() method in python. # printing integer value print(12) >>> 12 # printing float value print(12.56) >>> 12.56 # printing string value print(«Hello») >>> Hello # Leer más…

Data types – Introduction

In earlier videos, we called out that text written between quotes in Python is called a string. In programming terminology, a string is known as a data type, whether it’s a mobile game or a script used to automatically create Leer más…