본문으로 바로가기
범주
기술

Python 튜토리얼

Python 프로그래밍의 최신 뉴스, 기법, 자료를 꾸준히 확인하세요. 실무 중심의 단계별 가이드와 활용 사례로 실력을 키울 수 있습니다.
기타 기술:
Group2명 이상을 교육하시나요?DataCamp for Business 사용해 보세요

How to Sort a Dictionary by Value in Python

Learn efficient methods to sort a dictionary by values in Python. Discover ascending and descending order sorting and bonus tips for key sorting.

2024년 6월 19일

Codestral API Tutorial: Getting Started With Mistral’s API

To connect to the Codestral API, obtain your API key from Mistral AI and send authorized HTTP requests to the appropriate endpoint (either codestral.mistral.ai or api.mistral.ai).

2024년 6월 18일

PySpark: How to Drop a Column From a DataFrame

In PySpark, we can drop one or more columns from a DataFrame using the .drop("column_name") method for a single column or .drop(["column1", "column2", ...]) for multiple columns.

2024년 6월 16일

How to Convert Bytes to String in Python

To convert bytes to strings in Python, we can use the .decode() method, specifying the appropriate encoding.

2024년 6월 12일

Using a Knowledge Graph to Implement a RAG Application

Learn how to implement knowledge graphs for RAG applications by following this step-by-step tutorial to enhance AI responses with structured knowledge.

2024년 6월 11일

Prompt Compression: A Guide With Python Examples

Prompt compression is the process of reducing the length of an input prompt while retaining the essential information needed for a language model to understand and generate a relevant response.

2024년 6월 10일

Data Structures: A Comprehensive Guide With Python Examples

Data structures are methods of organizing data to facilitate efficient storage, retrieval, and manipulation.

2024년 6월 6일

How to Convert String to Bytes in Python

In Python, use the .encode() method on a string to convert it into bytes, optionally specifying the desired encoding (UTF-8 by default).

2024년 6월 5일

Python Hello World: A Beginner’s Guide to Programming

Learn the fundamentals of Python by running the print(“Hello World”) program.

2024년 6월 5일

Pandas Resample With resample() and asfreq()

This tutorial explores time series resampling in pandas, covering both upsampling and downsampling techniques using methods like .asfreq() and .resample().

2024년 6월 3일

Python timedelta: Working With Time Intervals in Python

In Python, timedelta is a data type within the datetime module used to represent durations or differences between two points in time.

2024년 6월 2일

Fine-Tuning Llama 3 and Using It Locally: A Step-by-Step Guide

We'll fine-tune Llama 3 on a dataset of patient-doctor conversations, creating a model tailored for medical dialogue. After merging, converting, and quantizing the model, it will be ready for private local use via the Jan application.

2024년 5월 30일