2024 iThome 鐵人賽
Share More Gain More
Python
選手 80 文章 1490
Day 4
2024-09-18
299
0
Python 之禪 許多自學 Python 的新手們,在各類型的教學影片中可能不常看到這個彩蛋,當我們進入 Python Interactive Shell 後...
Day 13
2024-09-23
299
0
計算列表中的最大值:Python提供了max和min函數來快速找到列表中的最大和最小值:numbers = [1, 5, 3, 9, 2]print(max(n...
Day 16
2024-09-22
299
0
random查看可用方法: import random help(random) 猜數字遊戲:1.randomint()隨機顯示範圍內數字(每次顯示會不一樣)...
Day 18
2024-10-01
298
0
點我下載:song_rank2.csv 讀檔 data/song_rank.csv setwd('/Users/carplee/Desktop/IT pytho...
Day 24
2024-10-07
298
0
簡介 在鐵人賽的開篇,我們介紹了應用程式的開發過程,涵蓋了 Web Application 和 Command Line Tool 的開發。隨後,我們討論了如何...
Day 8
2024-09-18
297
0
函數定義:函數是一段可以重複使用的代碼。你可以自己定義函數來簡化重複的任務:def greet(name):print("Hello, "...