Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Вивчайте Using Modules | Functions and Modules
Introduction to Data Analysis in Python
course content

Зміст курсу

Introduction to Data Analysis in Python

Introduction to Data Analysis in Python

1. Basics
2. Data Types
3. Control Flow
4. Functions and Modules
5. Introduction to NumPy

book
Using Modules

Libraries that you will use provide creating objects of new types with new properties, methods, attributes. Each library has specific documentation with explanations on methods/attrbites/classes provided. Let's remind what methods and objects are.

A method is a function that 'belongs to' an object.

An object is simply a collection of data (variables) and methods (functions) that act on those data.

Some libraries may also export constants - values that don't change during a program's execution. For example,

12345678910
# Importing library from datetime import date # Create new 'date' object d = date(2022, 10, 10) # Applying method to object print(d.isoformat()) # Object attribute print(d.month) # Library constant print(datetime.UTC)
copy

Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 4. Розділ 3

Запитати АІ

expand
ChatGPT

Запитайте про що завгодно або спробуйте одне із запропонованих запитань, щоб почати наш чат

course content

Зміст курсу

Introduction to Data Analysis in Python

Introduction to Data Analysis in Python

1. Basics
2. Data Types
3. Control Flow
4. Functions and Modules
5. Introduction to NumPy

book
Using Modules

Libraries that you will use provide creating objects of new types with new properties, methods, attributes. Each library has specific documentation with explanations on methods/attrbites/classes provided. Let's remind what methods and objects are.

A method is a function that 'belongs to' an object.

An object is simply a collection of data (variables) and methods (functions) that act on those data.

Some libraries may also export constants - values that don't change during a program's execution. For example,

12345678910
# Importing library from datetime import date # Create new 'date' object d = date(2022, 10, 10) # Applying method to object print(d.isoformat()) # Object attribute print(d.month) # Library constant print(datetime.UTC)
copy

Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 4. Розділ 3
Ми дуже хвилюємося, що щось пішло не так. Що трапилося?
some-alt