Git Basics Welcome to the first part of the git tutorials. In this part we will get familiar with some of the most basic concepts about Git and Github, why we need them, how they help us and how we should use them. If you are already familiar…
Updates
#60 String Format (Python Tutorials)
String Format In this part of our python tutorials series, you will learn about the string formatting in python. We have had tutorials about the strings at the beginning of the course. In this video, you will see the different ways in which you can push your integer…
#59 JSON (Python Tutorials)
JSON In this part of our python tutorials series, you will learn about JSON in python. JSON stands for Java Script Object Notation and it is a format of data that you can easily create out of dictionaries in python and then convert into string to become a…
#58 File Handling – Part 2 (Python Tutorials)
File Handling (Part 2) In this part of our python tutorials series, you will learn about file handling in python. Python allows you to create any type of document with .txt or .json or other file formats. In this video and the next one, you will see how…
#57 File Handling – Part 1 (Python Tutorials)
File Handling (Part 1) In this part of our python tutorials series, you will learn about file handling in python. Python allows you to create any type of document with .txt or .json or other file formats. In this video and the next one, you will see how…
#56 Try Except (Python Tutorials)
Error Handling in Python In this part of our python tutorials series, you will learn about the error handling in python. Errors can happen anywhere inside your code. There are times that you know where the problem comes from. There are also times that errors in some part…
#55 Math Module (Python Tutorials)
Math Module In this part of our python tutorials series, you will learn about the math module in python. This module is one of the python built in modules that you can import and benefit from its mathematical functions and operators. As you have seen up to…
#54 Date and Time (Python Tutorials)
Date and Time In this part of our python tutorials series, you will learn about date and time module in python. Using the datetime module, you can find the current time online and you can also get the year or month or day and also other time specifications…
#53 Modules in Python – Part 2 (Python Tutorials)
Modules (Part 2) In this part of our python tutorials series, you will learn about the modules in python. We use modules to import variables, classes, methods and functions from another python code file. Some modules are built-in ones that you do not need to install them (They…
#52 Modules in Python (Python Tutorials)
Modules (Part 1) In this part of our python tutorials series, you will learn about the modules in python. We use modules to import variables, classes, methods and functions from another python code file. Some modules are built-in ones that you do not need to install them (They…