發表文章

李珮喬排序RANK百分比PERCENTRANK百分位PERCENTILE

圖片
董事長 員工人數-母公司 實收資本額(元) 設立日期 TSE上市日 會計師事務所 百分比 排序 張安平 1217 77231817420 19501229 19620209 勤業眾信聯合會計師事務所 80.0% 3 9 73.5 0.05 徐旭東 480 35465628810 19570321 19620618 勤業眾信聯合會計師事務所 50.0% 6 6 227 0.25 張剛綸 89 7902474590 19541213 19691127 勤業眾信聯合會計師事務所 10.0% 10 2 480 0.5 侯博義 536 6866818160 19600321 19710202 勤業眾信聯合會計師事務所 60.0% 5 7 974 0.75 陳韻如 399 4047380000 19740507 19900606 勤業眾信聯合會計師事務所 40.0% 7 5 2999 1 楊智雄 347 3411588680 19640315 19911205 資誠聯合會計師事務所 30.0% 8 4 陳敏斷 58 5720007970 19561228 19941022 國富浩華聯合會計師事務所 0.0% 11 1 徐文芳 1407 5060629000 19530922 19620209 資誠聯合會計師事務所 90.0% 2 10 2203 0.95 陳清福 731 2400000000 19590704 19640824 大中國際聯合會計師事務所 70.0% 4 8 韓家宇 2999 8947672220 19601228 19780520 安侯建業聯合會計師事務所 100.0% 1 11 蘇芸樂 107 566226270 19650724 19810410 南台聯合會計師事務所 20.0% 9 3

李珮喬

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

李珮喬python+csv+pandas

圖片
import pandas #CSV已經內建 pandas沒有 rows = pandas.read_csv('TWSE.csv',encoding = 'utf-8') print(rows.head(4)) print('李珮喬執行',rows['會計師事務所'].describe()) print('李珮喬執行',rows['實收資本額(元)'].describe())

李珮喬Python套件CSV比較EXCEL

圖片
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) for i in range(1,6): print('輸出第',i,'公司',rows[i-1]) print('台灣證券交易所公司數',len(rows)) print('排在最後',rows[-1]) 證券代碼,董事長,員工人數-母公司,實收資本額(元),設立日期,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,3411588680,19640315,19911205,資誠聯合會計師事務所 1110 東泥,陳敏斷,58,5720007970,19561228,19941022,國富浩...

李珮喬期末考為python貪吃蛇增加速度

圖片
from tkinter import * import random GAME_WIDTH,GAME_HEIGHT = 1000, 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維基百科

圖片
CSS=Cascading Style Sheet=階層樣式表單。HTML語法是小於<(HTML規定不能用,所以要如此表達)、大於>前後包圍,對稱指令,結束的加上斜線SLASH/。HTML=HyperText Markup Language,超文件標記語言。 維基百科PYTHON程式語言 Python語法中的複合語句,包含了一些其他語句,它們以某種方式影響或控制這些其他語句的執行。Python的複合語句包含一個或多個子句(clause),子句構成自一個頭部(header)和一個套件(suite)。特定複合語句的子句頭部都在同樣的縮排層級上,每個子句頭部開始於一個唯一標識關鍵字,並結束於一個冒號。套件即語法意義上的塊,是這個子句所控制的一組語句。 Python uses whitespace indentation(空白鍵縮排), rather than curly brackets or keywords(而不是使用 大括號 ), to delimit blocks(來界定區段). An increase in indentation comes after certain statements; a decrease in indentation signifies the end of the current block.[82] Thus, the program's visual structure accurately represents its semantic structure.[83] This feature is sometimes termed the off-side rule. Some other languages use indentation this way; but in most, indentation has no semantic meaning. The recommended indent size is four spaces. 教學影片622

李珮喬Javascript在瀏覽器就可以執行不需要開啟VS Code

圖片
Javascript在瀏覽器就可以執行不需要開啟VS Code 李珮喬執行 哈執行 VS Code編輯網頁