Arama Yap Mesaj Submit
Request a Callback
+90
X
X

Select Your Currency

Turkish Lira $ US Dollar Euro
X
X

Select Your Currency

Turkish Lira $ US Dollar Euro

Contact Us

Location Halkali merkez neighborhood fatih st ozgur apt no 46 , Kucukcekmece , Istanbul , 34303 , TR

What is Python?
All About

The world's most popular programming language. From web development to artificial intelligence (AI), data A leader in every field from analysis (Pandas) to automation.

import random

def python_ogren():
  konular = ["Web", "AI", "Data"]
  choice = random.choice(topics)
  return f"Today {secim} learn!”

print(python_ogren())
# Output: Learn AI today!
What is it? Installation & PIP Kodlama & Syntax Libraries Frequently Asked Questions (Is it Difficult?)

Python What is it for?

Python is a high-level and general language program developed by Guido van Rossum in 1991 . It is a purposeful language.

  • Artificial Intelligence (AI): Machine learning models development.
  • Data Analysis: Big data with Pandas processing.
  • Web Development: Site with Django and Flask setting up
  • Otomasyon: Writing bots with Selenium (eg: Instagram bot).
  • Cyber Security: Penetration test scripts (Scapy, Requests).

Python Zor Mu?

No! Python's motto is "Executable Pseudocode". So human It is very close to your language. curly brackets {} uses indentation instead, which It makes the code readable.

If you have no coding knowledge to start best is the language.

Download and P.I.P. commands

Windows Setup

  1. python.org Go to.
  2. Downloads > Windows > Python 3.12.x (or latest version) button.
  3. Run the downloaded EXE file.
  4. ATTENTION: On the installation screen, check the "Add Python to PATH" box. Be sure to mark it!
  5. Finish by saying "Install Now".

What is PIP? How to Use?

PIP (Preferred Installer Program), Python libraries (Pandas, Selenium etc.) It is a tool that allows you to install it via command.

C:\Users> python --version
Python 3.12.1
C:\Users> pip install selenium
Downloading selenium-4.1.0... Successfully installed.
C:\Users> pip install --upgrade pip
Requirement already satisfied...
C:\Users> pip install -r requirements.txt
Installing collected packages from file...

Temel Syntax and Examples

String&Print

Text expressions are written in quotation marks. zfill() leading zeros adds.

name = "Eka"
print(f"Hello {isim}")

kod = "5"
print(kod.zfill(3)) # Output: 005
While Loop

It works as long as a condition is true.

number = 1
while number < 5:
  print(number)
  number += 1
Zip and Random

zip() combines lists. random Generates random numbers.

import random
print(random.randint(1,100))

names = ["Ali", "Ayşe"]
yaslar = [25, 30]
print(list(zip(names, ages)))

Popular Libraries

Pandas

For Excel and Data analysis.

selenium

Web automation and bot building.

Requests

Extracting data from sites (HTML).

PyPDF2

PDF reading and editing.

Frequently Asked Questions

Although the term "Python slimming" is sometimes confused with stomach surgery in search engines, in the software "Code It can mean "Optimization" or "Minification". Faster by reducing the number of lines of code is to make it work.
IDLE is the simple coding editor that comes with Python when you install it. It is enough for beginners but for professional projects PyCharm or VS Code recommended.
It is the file that keeps the list of all the libraries you use in your project. Projectctct on another computer while running pip install -r requirements.txt All missing libraries are automatically detected with the command is loaded.

Related Searches:

Top