BlockLune's Blog

首页 标签 关于 |

带有以下标签的文章 python

使用 pyenv 和 conda 管理多个 Python 版本

2024-11-15
pythontoolenvironment-managementpyenvconda

作为一名计科专业的学生,我经常发现自己的项目需要不同的 Python 版本,每个版本都有自己的依赖关系和库。在这种情况下,拥有一种可靠而高效的方法来管理这些版本就变得至关重要。受 pyenv 与 conda 双轨制:管理 Python 版本和环境 的启发,这篇博文旨在记录我使用 pyenv 和 conda 管理 Python 多个版本的经验。

Note for Intro to Machine Learning

2023-11-12
pythonmachine-learningdecision-treerandom-forestmean-absolute-errornote

This is a note for the course on Kaggle: Intro to Machine Learning.

Python 中的 Getter 和 Setter

2023-10-17
pythonoopgetter-setterproperty-decorator

Getter and Setter in Python 的中文翻译。

Notes for Machine Learning Specialization: Vectorization

2023-08-09
aimachine-learningpythonvectorizationlinear-algebranote

This is a note for the Machine Learning Specialization.

Notes for Nand2Tetris: Assembler

2023-07-17
nand2tetrispythonassemblerprogramming-languagesoftware-engineeringnote

This is a note for Nand2Tetris Unit 6.

Notes for Machine Learning

2023-07-14
aimachine-learningcourseranotepythonoctavelinear-regressionlogistic-regression

Here are my notes for course Machine Learning taught by Andrew Ng.About exercise: I didn't do the original version exercise which depends on Octave or Matlab, but a third-party Python version (See nsoojin/coursera-ml-py).

Python libraries mentioned in CS50P

2023-07-07
pythonprogramming-languagesoftware-engineeringtoolcs50p

This is a list of some Python libraries mentioned in CS50P 2022.

Matching IPv4 addresses with RegExp

2023-07-04
pythonregexsoftware-engineeringprogramming-languageipv4

While solving the NUM3RS problem of CS50P, I was asked to match IPv4 addresses with RegExp.

Notes for Matplotlib

2023-06-29
pythonmatplotlibdata-visualizationnotetool

Here are some notes for Matplotlib.

Permutations and Combinations in Python (itertools)

2023-05-28
pythonalgorithmdata-structureitertoolspermutations-combinationsprogramming-language

Extracted from itertools — Functions creating iterators for efficient looping — Python 3.11.3 documentation