#11 String in Python – Part 4 (Python Tutorials)

Slicing the Strings with the Character Positions This tutorial is the fourth video about strings. In this part, you will learn how to slice the strings from a specific position. The next video is also about slicing the strings with the difference that this part focuses on…

Read More

#10 String in Python – Part 3 (Python Tutorials)

Strings (Part 3) This tutorial is the third video about strings. In this part, you will learn how to check if a string or a character exists in another larger string or not. To do this we use a simple ‘if statement’ and also the ‘in’ expression to…

Read More

#9 String in Python – Part 2 (Python Tutorials)

Strings (Part 2) This tutorial is the second video about strings. In this part, you will learn how to retrieve different characters of a string, how to find the length or number of characters in it and also how to loop through a string. This is the…

Read More

#8 String in Python – Part 1 (Python Tutorials)

Strings (First Part) This tutorial is the first video about strings. In this first part, you will learn how to declare a string and also how to write a multi-line string. Learning how to work with string is very essential in any programming language and python is…

Read More

#7 Data Dype Conversion in Python (Python Tutorials)

Data Type Conversion In this part of our python tutorial series, you will learn how to convert some of the data types to the other ones. Notice that not all data types are convertible to others and this conversion is only possible on some certain conditions.

Read More

#6 Data Types in Python (Python Tutorials)

Data Types In this part of our python tutorial series, you will learn about all the different data types in python such as integer, float, string, boolean and so on. There are certain rules about each data type that you will learn in this video.

Read More

#5 Local and Global Variables in Python (Python Tutorials)

Local and Global Variables In this part of our python tutorial series, you will learn about the 2 different scopes in variables, global and local. Learning these two scopes is really important as it will determine whether a variable is defined in a specific part of your code…

Read More

#4 Variables in Python (Python Tutorials)

Variables in Python In this part of our python tutorials series, you will learn about diferent types of variables, how to define them and how they should be named in python. In the next part, you will get familiar with local and global scopes of the variables.

Read More

#3 Comments in Python (Python Tutorials)

Comments in Python In this part of our python tutorials series, you will learn what comments are, how to write them and why do we generally write comments in our codes. Comments are usually written in one line. But there are times when we have to write our…

Read More

#2 First Syntax in Python (Python Tutorials)

First Syntax in Python In this part of our python tutorials series you will learn how to write the very first syntax in python. This is considered as a “Hello World!” part of our tutorial where you will learn how to print somrthing on the console and also…

Read More