發表文章

圖片
朱冠宇EXCEL樞紐分析四大會計師事務 列標籤 勤業眾信聯合會計師事務所 資誠聯合會計師事務所 安侯建業聯合會計師事務所 安永聯合會計師事務所 國富浩華聯合會計師事務所 正風聯合會計師事務所 立本台灣聯合會計師事務所 信永中和聯合會計師事務所 德昌聯合會計師事務所 大中國際聯合會計師事務所 建智聯合會計師事務所 群智聯合會計師事務所 致遠聯合會計師事務所 惠眾聯合會計師事務所 霈昇聯合會計師事務所 冠恆聯合會計師事務所 南台聯合會計師事務所 馬施云大華聯合會計師事務所 資信聯合會計師事務所 聯捷聯合會計師事務所 基富聯合會計師事務所 總計 1101 台泥 1 1 1102 亞泥 1 1 1103 嘉泥 1 1 1104 環泥 1 1 1108 幸福 1 1 1109 信大 1 1 1110 東泥 1 1 1201 味全 1 1 1203 味王 1 1 1210 大成 1 1 1213 大飲 1 1 1215 卜蜂 1 1 1216 統一 1 1 1217 愛之味 1 1 1218 泰山 1 1 1219 福壽 1 1 1220 台榮 1 1 1225 福懋油 1 1 1227 佳格 1 1 1229 聯華 1 1 1231 聯華食 1 1 1232 大統益 1 1 1233 天仁 ...

朱冠宇pandas.describe.excel.percentrank.percentile

圖片

朱冠宇PYTHON PANADA

圖片

朱冠宇keyevent期末考

圖片
from tkinter import * def doSomething(event): #print("You pressed: " + event.keysym) label.config(text=event.keysym) window = Tk() window.title('朱冠宇期末考') window.bind("&ltKey&gt",doSomething) label = Label(window,font=("Helvetica",300),bg='yellow') label.pack() window.mainloop()

朱冠宇Bro Code貪吃蛇python snake game

圖片
from tkinter import * import random GAME_WIDTH = 1000 GAME_HEIGHT = 700 SPEED = 500 SPACE_SIZE = 50 BODY_PARTS = 3 SNAKE_COLOR = "#00FF00" FOOD_COLOR = "#FF0000" BACKGROUND_COLOR = "#000000" 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 :             square = canvas . create_rectangle ( x , y , x + SPACE_SIZE , y + SPACE_SIZE , fill = SNAKE_COLOR , tag = "snake" )             self . squares . append ( square ) class Food :     def __init__ ( self ):         x = random . randint ( 0 , ( GA...

朱冠宇eval=evaluate函數calculator美國男生印度女生.調色板

圖片
w3schools eval() 美國男生bro code from tkinter import * def button_press(num): global equation_text equation_text = equation_text + str(num) equation_label.set(equation_text) def equals(): global equation_text try: total = str(eval(equation_text)) equation_label.set(total) equation_text = total except SyntaxError: equation_label.set("syntax error") equation_text = "" except ZeroDivisionError: equation_label.set("arithmetic error") equation_text = "" def clear(): global equation_text equation_label.set("") equation_text = "" window = Tk() window.title("劉任昌計算機calculator") window.geometry("500x500") equation_text = "" equation_label = StringVar() label = Label(window, textvariable=equation_label, font=('consolas',20), bg="white", width=24, height=2) label.pack() frame = Frame(w...

朱冠宇tkinter繪圖套件time時間sleep方法

圖片
程式碼 from tkinter import * #下載程式碼,從tkinter輸入所有函式 import time x = [ ' \U0001F600 ' , ' \U0001F601 ' , ' \U0001F602 ' , ' \U0001F615 ' , ' \U0001F622 ' ] #定義一個串列 y = [] #追蹤特定視窗用途,尚未使用 for i in range ( 5 ):     window = Tk () #建構視窗,名為window建構一個房子     window . title ( '朱冠宇python第 %d 視窗' % ( i + 1 ))     window . geometry ( '400x400+ %d +100' % ( 400 * i ))     b1 = Label ( window , text = x [ i ], font = 'Arial 250 bold' ). pack ()     time . sleep ( 1 )     window . update ()     y . append ( window ) #追蹤特定視窗用途,尚未使用 window . mainloop ()