• All
  • Angular
  • CSS
  • database
  • GraphQL
  • HTML
  • JavaScript
  • Next.js
  • Node.js
  • Python
  • Ruby
  • TypeScript
  • WordPress
  • WordPress主機
  • WordPress外掛
  • WordPress架設網站
  • 前端筆記
  • 後端筆記
  • 演算法
  • 網站原理
  • 網站知識
  • 資工
  • 資料結構
  • 開發工具
  • 開箱
  • 閒聊
All
  • All
  • Angular
  • CSS
  • database
  • GraphQL
  • HTML
  • JavaScript
  • Next.js
  • Node.js
  • Python
  • Ruby
  • TypeScript
  • WordPress
  • WordPress主機
  • WordPress外掛
  • WordPress架設網站
  • 前端筆記
  • 後端筆記
  • 演算法
  • 網站原理
  • 網站知識
  • 資工
  • 資料結構
  • 開發工具
  • 開箱
  • 閒聊
Python Iterator
Python

Python Iterator 介紹

Python Iterator 常常會和 Iterable object 一起搞混,這篇就來介紹一下 Python 中的 Iterator。 延伸閱讀:Python …

Read More →
Python Comprehension
Python

Python Comprehension 語法 – List Comprehension, Set Comprehension, Dict Comprehension

Comprehension 算是 Python 特有的語法,可以用來宣告一些特定 object,或是對這些 object 做一些操作。 1. List Comprehension …

Read More →
iterable object
Python

Python Iterable Objects 介紹

Python 中有許多 function 接收的 arguments 是 iterable objects,因此就來好好瞭解一下 Python iterable …

Read More →
Python int
Python

Python 教學 6 – Python Numeric Types – int, float

Python 中的 numeric type,除了常用的 int 和 float 外,還有 complex (複數),不過因為複數的應用場景比較少一點,所以就先暫時忽略。 …

Read More →
Python String
Python

Python 教學 5 – Python String Objects

1. 宣告 Python String Object 1.1 單引號:’ 用來宣告普通的 string object,或是當 …

Read More →
Python docstrings
Python

Python 教學 4 – function, object 基本 methods, DocStrings

1. function 1.1 定義 function Python 中用 def 來定義 function,不像 …

Read More →
close function
Python

Python 教學 3 – File Handling -Read File, Write File

筆記一下在 Python 中讀寫檔案的方式 1. open Function – 針對檔案做操作 Python 提供了 …

Read More →
Python Loop
Python

Python 教學 2 – 基本語法:Output, Loop, Control Flow

1. Output 1.1 print print 可以用來 output 字串 print function …

Read More →
pyenv
Python

Python 教學 1 – 環境架設 ( pyenv ) 與 Python 簡介

1. 使用 pyenv 安裝 Python 雖然可以直接在 Python 官網安裝特定版本,但通常 local 上如果有不只一個 …

Read More →
Scroll to Top