Category: Python Lessons

Lesson-19: Python Character Sequences-2 0

Lesson-19: Python Character Sequences-2

Python Character Sequences-2 Python Character Sequences, In our previous lesson, we talked about the general characteristics of character sequences. In this lesson, we will talk about some methods. Methods are tools in Python that...

Lesson-17: Python Os Module: 1

Lesson-17: Python Os Module:

Python Os Module Python Os Module : When we want to write a program that will run on all operating systems we have to consider these differences and different situations when we should write...

Lesson-17: Python Map Function 0

Lesson-17: Python Map Function

Python Map Function The Map () function executes a function specified for each repeatable element. The element is sent to the function as a parameter. Usage: Python Map Function : map(function, repeated) Parameter Values: Parameter...

Lesson-18: Python Character Sequences 0

Lesson-18: Python Character Sequences

Python Character Sequences Python character sequences, as the name suggests, are an array formed by a combination of characters. Character arrays are a special data type that is shown in single, double, or three...

Lesson-15: Python Database 0

Lesson-15: Python Database

Python database Python has many alternatives that you can use for database operations. But in all these alternatives, we will prefer SQLite. First of all, Sqlite is part of this language since versions 2.5...

Lesson-11:Python Random Module 0

Lesson-11:Python Random Module

Python Random Module In this course, we will process the python Random module nudes. This module, which comes as standard in the Python programming language, allows you to generate random numbers. It is used...

Lesson-7: Python Function 0

Lesson-7: Python Function

Python Function Some of the functions used up to this section are as follows: print( ), input( ), int( ) and LEN( ) Function the same function as the functions in mathematics. defined a...

Lesson-6: Python For Loop 0

Lesson-6: Python For Loop

Python For Loop Python For loop: used quite a lot in Python and other programming languages. Allows code to run multiple times, just like the while loop. In addition, we can easily make many...

Lesson-4: Python While Loop 0

Lesson-4: Python While Loop

Python While Loop Cycles are called consecutive operations. When we want to repeat a process 10 times, we put it in a loop. If we want a process, we can also loop it forever....

Python Installation and PyCharm Installation 0

Python Installation and PyCharm Installation

Python Installation and PyCharm Installation Considerations for installing Python 3.5.8.Considerations in PyCharm installation and initial project launch. Writing Python codes.Pycharm is an IDE program created for python. It is the best IDE used in...

Lesson-2:Python Comparison Oparetors 0

Lesson-2:Python Comparison Oparetors

Python Comparison Oparetors Comparisons of values taken by variables (size,equality, etc.) the operators we use to make are called comparison operators. Comparison operators send us data of boolean type (True or False). Python comparison...