林政宏python+csv+pandas+EXCEL 取得連結 Facebook X Pinterest 以電子郵件傳送 其他應用程式 3月 17, 2026 import pandas #下載 TWSE.csv檔案 rows = pandas.read_csv('TWSE.csv',encoding = 'utf-8') print(rows['會計師事務所'].describe()) print(rows["員工人數-母公司"].describe()) 取得連結 Facebook X Pinterest 以電子郵件傳送 其他應用程式 留言 George2026年5月11日 晚上8:22期中考,優秀如你,應該多去把美眉!https://fake888.blogspot.com/2026/04/blog-post_28.html317第一次來上課.https://fake888.blogspot.com/2026/03/pythonhtmlcssjavascript.html回覆刪除回覆回覆新增留言載入更多… 張貼留言
林政宏輸入tkinter繪圖模組金融常識測驗APP 10月 12, 2025 import tkinter #輸入tkinter繪圖模組 #財金程式設計602 class Financial: #類別用於建構504道金融常識題目 def __init__(self, number, q, a, b, c, d, ans): self.number, self.q, self.ans = number, q, ans self.a, self.b, self.c, self.d = a, b, c, d def check(choice): choice = reply.get() #以字串存'1'...'4' temp = number.get() - 1 #題號 if choice == '1': LBa.config(bg="#a4abc1") if choice == List[temp].ans: LBa.config(bg='blue',fg='white') if choice == '2': LBb.config(bg="#a4abc1") if choice == List[temp].ans: LBb.config(bg='blue',fg='white') if choice == '3': LBc.config(bg="#a4abc1") if choice == List[temp].ans: LBc.config(bg='blue',fg='white') if choice == '4': LBd.config(bg="#a4abc1") if choice == List[temp].ans: LBd.config(bg=... 閱讀完整內容
林政宏VSCODE編輯font 11月 09, 2025 import tkinter #輸入tkinter繪圖模組 #財金程式設計602 class Financial: #類別用於建構504道金融常識題目 def __init__(self, number, q, a, b, c, d, ans): self.number, self.q, self.ans = number, q, ans self.a, self.b, self.c, self.d = a, b, c, d def check(choice): choice = reply.get() #以字串存'1'...'4' temp = number.get() - 1 #題號 if choice == '1': LBa.config(bg="#a4abc1") if choice == List[temp].ans: LBa.config(bg='blue',fg='white') if choice == '2': LBb.config(bg="#a4abc1") if choice == List[temp].ans: LBb.config(bg='blue',fg='white') if choice == '3': LBc.config(bg="#a4abc1") if choice == List[temp].ans: LBc.config(bg='blue',fg='white') if choice == '4': LBd.config(bg="#a4abc1") if choice == List[temp].ans: LBd.config(bg=... 閱讀完整內容
林政宏期末考為PYTHON貪吃蛇增加速度 1月 04, 2026 from tkinter import * import random GAME_WIDTH,GAME_HEIGHT = 800, 400 SPEED = 600 #時間單位千分之一 SPACE_SIZE, BODY_PARTS= 50, 3 #左邊變數 assigning value SNAKE_COLOR = ["red","orange","yellow","green","blue","indigo", "purple"] FOOD_COLOR = "white" BACKGROUND_COLOR = "black" class Snake: def __init__(self): self.body_size = BODY_PARTS self.coordinates = [] self.squares = [] for i in range(0, BODY_PARTS): self.coordinates.append([0, 0]) for x, y in self.coordinates: i = random.randint(0,6) square = canvas.create_rectangle(x, y, x + SPACE_SIZE, y + SPACE_SIZE, fill=SNAKE_COLOR[i], tag="snake", width=20,outline='blue') self.squares.append(square) class Food: def __init__(self): x = random.randint(0, int(GAME_WIDTH / SPACE_SIZE)-1) * SPACE_SIZE y = random.randint(0, int(GAME_HE... 閱讀完整內容
期中考,優秀如你,應該多去把美眉!https://fake888.blogspot.com/2026/04/blog-post_28.html
回覆刪除317第一次來上課.https://fake888.blogspot.com/2026/03/pythonhtmlcssjavascript.html