Lists in Python (Part 3) In this third part of the python tutorials about the lists you will learn how to extend a list or add a new element to it. Also, you will learn how to concatenate two separate lists together. In addition, you will see how…
Updates
#20 Lists in Python – Part 2 (Python Tutorials)
Lists in Python (Part 2) In this part of the tutorials on python you will learn about how to modify a list in python. Imagine that you want to change an element inside a list and to do that there are 2 main ways that we have mentioned…
#19 Lists in Python – Part 1 (Python Tutorials)
Lists (Part 1) This video of the python tutorials series mainly focuses on the lists. You will learn how to define the list, how to access different items in list, how to find the length of a list and also how create a subset of a list by…
#18 Operators in Python – Part 2 (Python Tutorials)
Operators (Part 2) In this part of our python tutorials series you will learn about the operators like equality of the two variables, and , or, greater, smaller and so on. These operators are especially useful when you want to work with the if statement to check some…
#17 Operators in Python – Part 1 (Python Tutorials)
Operators in Python (Part 1) In this part of our python tutorials we will mainly focus on the operators and specifically on mathematical operators such as plus, minus, devision, multiplication and so on. However, this is not the only video related to operators. There are many other…
#16 Booleans (Python Tutorials)
Booleans in Python This video of the series of Python tutorials will mainly focus on boolean data types. These types of data are either True or False and can be used in so many different circumstances such as when you are want to check if a specific…
#15 Backslash in Strings (Python Tutorials)
Concatenating the Strings This tutorial is the eighth video about strings. In this part, you will learn how to concatenate the strings or in other words connect the strings together. There many ways for doing this and your will learn all throughout the video.
#14 Concatenating Strings (Python Tutorials)
Concatenating the Strings This tutorial is the seventh video about strings. In this part, you will learn how to concatenate the strings or in other words connect the strings together. There many ways for doing this and you will learn all throughout the video.
#13 Modifying Strings in Python (Python Tutorials)
Modifying Strings This tutorial is the sixth video about strings. In this part, you will learn how to modify the strings in python. These modifications include changing the lowercase letters to uppercase ones and vice versa, splitting the texts from a certain character like comma, removing the…
#12 Slicing Strings in Python (Python Tutorials)
Slicing the Strings This tutorial is the fifth video about the strings. In this part, you will learn how to slice the strings by searching for a specific character or a string inside of the main string and finding the position of it. This part is the…