Metody i pakiety

Python dla użytkowników MATLAB-a

Justin Kiggins

Product Manager

Metody to funkcje przypisane do zmiennych

  • Specyficzne dla typu zmiennej
  • Dostępne po kropce
yelling = "WHY ARE YOU YELLING?"
whispering = yelling.lower()
print(whispering)
why are you yelling?
Python dla użytkowników MATLAB-a

Metoda `.format()`

n_avocados = 1765
message = "I have {} avocados!".format(n_avocados)

print(message)
I have 1765 avocados!
Python dla użytkowników MATLAB-a

Pakiety Pythona

Logo NumPy

Logo matplotlib

Logo pandas

Python dla użytkowników MATLAB-a
import math

math.pi
3.141592653589793
math.log(0.9)
-0.10536051565782628

Importowanie części pakietu:

from math import log
log(0.9)
-0.10536051565782628
Python dla użytkowników MATLAB-a

Aliasowanie pakietów

import datetime as dt

birth_date = dt.datetime(1961,8,4)
# Import NumPy package with common alias import numpy as np x = np.ndarray([1, 2, 3])
# Import pandas package with common alias import pandas as pd df = pd.DataFrame()
# Import Matplotlib pyplot module with common alias import matplotlib.pyplot as plt plt.show()
# Import Seaborn package with common alias import seaborn as sns sns.set_theme()
Python dla użytkowników MATLAB-a

Poznajmy przydatne metody i pakiety

Python dla użytkowników MATLAB-a

Preparing Video For Download...