Category: Python_en

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-3: Tkinter Label Color, Font 0

Lesson-3: Tkinter Label Color, Font

Tkinter Label Color, Font We created a window and created 2 labels in it. Now let’s color these labels . etiket2=tk.Label(pencere,text=”Bilişim Teknolojileri”, fg=”red”) we can change the label Color by adding red to the...

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...