發表文章

江冠頤RANK排序

圖片
證券代碼 董事長 員工人數-母公司 實收資本額(元) 設立日期 TSE上市日 會計師事務所 百分比 排序 遞增順序 百分位 PERCENTILE 年月日 江冠頤 1101 台泥 張安平 1217 77231817420 19501229 19620209 勤業眾信聯合會計師事務所 80.00% 3 9 1950/12/29 1102 亞泥 徐旭東 480 35465628810 19570321 19620618 勤業眾信聯合會計師事務所 50.00% 6 6 0 58 1957/3/21 1103 嘉泥 張剛綸 89 7902474590 19541213 19691127 勤業眾信聯合會計師事務所 10.00% 10 2 0.1 89 1954/12/13 1104 環泥 侯博義 536 6866818160 19600321 19710202 勤業眾信聯合會計師事務所 60.00% 5 7 0.25 227 1960/3/21 1108 幸福 陳韻如 399 4047380000 19740507 19900606 勤業眾信聯合會計師事務所 40.00% 7 5 0.5 480 1974/5/7 1109 信大 楊智雄 347 3411588680 19640315 19911205 資誠聯合會計師事務所 30.00% 8 4 0.75 974 1964/3/15 1110 東泥 陳敏斷 58 5720007970 19561228 19941022 國富浩華聯合會計師事務所 0.00% 11 1 0.9 1407 1956/12/28 1201 味全 徐文芳 1407 5060629000 19530922 19620209 資誠聯合會計師事務所 90.00% 2 10 1 2999 1953/9/22 1203 味王 陳清福 731 2400000000 19590704 19640824 大中國際聯合會計師事務所 70.00% 4 8 0.95 2203 1959/7/4 1210 大成 韓家宇 2999 8947672220 19601228 19780520 安侯建業聯合會計師事務所 100.00% 1 11 1960/12/28 1213 大飲 蘇芸樂 107 566226270 1965072...

江冠頤python+csv+pandas

圖片
import pandas rows = pandas.read_csv('TWSE.csv',encoding = 'utf-8') print(rows.head(4)) print(rows['會計師事務所'].describe()) print(rows['員工人數-母公司'].describe()) print(rows['實收資本額(元)'].describe())

江冠頤excel和python使用集合會計21家會計事務所

圖片
import csv #輸入csv套件comma separated value file = open('TWSE.CSV','r',encoding='utf-8') #打開下載的檔案TWSE.CSV,模式是r讀取, csvreader = csv.reader(file) #將檔案逐列讀入串列變數csvreader header, rows = [], [] #宣告空白串列(陣列,清單) header = next(csvreader) #串列header存放第一列標題 for row in csvreader: #逐列讀檔案、附加append於rows串列 rows.append(row) file.close() #關閉檔案 print(header) n = len(rows) print('上市公司數目',n) for i in range(n) : print(i+1,'家公司',rows [i][6]) accountant = set() for i in range(n): accountant.add(rows[i][6]) print('江冠頤使用集合set統計會計師',len(accountant)) 證券代碼 董事長 員工人數-母公司 實收資本額(元) 設立日期 TSE上市日 會計師事務所 1101 台泥 張安平 1217 77231817420 19501229 19620209 勤業眾信聯合會計師事務所 1102 亞泥 徐旭東 480 35465628810 19570321 19620618 勤業眾信聯合會計師事務所 1103 嘉泥 張剛綸 89 7902474590 19541213 19691127 勤業眾信聯合會計師事務所 1104 環泥 侯博義 536 6866818160 19600321 19710202 勤業眾信聯合會計師事務所 1108 幸福 陳韻如 399 4047380000 19740507 19900606 勤業眾信聯合會計師事務所 1109 信大 楊智雄 347 341...

江冠頤期末考為python貪吃蛇增加速度

圖片
from tkinter import * import random GAME_WIDTH,GAME_HEIGHT = 800, 400 SPEED = 1000 #時間單位千分之一 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_H...

江冠頤python全域變數global和判斷if

圖片
from tkinter import * #或者import tkinter as tk import math#輸入數學MATH函式庫 tk = Tk() #建構視窗名為tk tk.geometry('1200x400')#視窗 寬1200像素 tk.title("劉任昌python tkinter三角函數if_else判斷") canvas = Canvas(tk, width=1200, height=400, bg='PINK') canvas.grid(row=0,column=0,padx=5,pady=5,columnspan=3) delay=3 # milliseconds, 3/1000秒 x1,y1,z1=0,200,10#python特徵,多變數=對等值 h=190 #上下範圍,相當於數學1到-1 def LH(): global x1, y1, z1#global全球,local當地 x2 = x1 + 1 #換到下個+1 y2=200 - h*math.sin(0.02*x2) z2=200 - h*math.cos(0.02*x2) L1=canvas.create_line(x1,y1,x2,y2,fill='BLUE',width=10) L2=canvas.create_line(x1,z1,x2,z2,fill='yellow',width=10) if (x2 財金程式設計615拷貝mainloop的資訊 嵌入影片我標題的完整指令

江冠頤甲班math函數庫

圖片
from tkinter import * #或者import tkinter as tk import math #輸入數學math函數庫 tk = Tk() #建構視窗名為tk tk.geometry('1200x400')#視窗 寬1200像素 tk.title("屁眼老二") canvas = Canvas(tk, width=1200, height=400, bg='black') canvas.grid(row=0,column=0,padx=5,pady=5,columnspan=3) delay=10 # milliseconds, 1/1000秒 x1,y1,z1=0,200,10#python特徵,多變數=對等值 h=190 #上下範圍,相當於數學1到-1 def LH(): global x1, y1, z1#global全球,local當地 x2 = x1 + 1 #換到下個+1 y2=200 - h*math.sin(0.02*x2) z2=200 - h*math.cos(0.02*x2) L1=canvas.create_line(x1,y1,x2,y2,fill='blue',width=10) L2=canvas.create_line(x1,z1,x2,z2,fill='red',width=10) if (x2

江冠頤甲班python例外處理try:...except:...

圖片
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=...