發表文章

林韋誠python期中考javascript按鈕button事件onchange

圖片

期中考網頁檔案對照Python寫入

圖片

林韋誠HTML,CSS,Java Script將執行結果放置網頁取代檔案

圖片
截圖 期中考重點 write寫入檔案模式mode w=write會覆蓋原有檔案, a=append接續原來檔案, x=create創立新檔案, x與w有何不同? write寫入檔案,預設不換行,換行'\n' print呈現在螢幕,預設換行,不換行end=''。 write寫入用到英文以外的字元(一,a,b)encoding='utf8' vs code的html的檔案 林韋誠輸入參數 輸入k 輸入m 輸入n 執行自訂函數 重點 alert內建函數,自訂函數abc 林韋誠輸出結果 vs code的css的檔案 h1{background-color: purple; color: white; border: 10px solid red; text-align:center; padding: 5px} ul{background-color: green; color: white; font-size: 2em;line-height:1.5} input{background-color:green;font-size: 5em; } vs code的js的檔案 function abc(){ k = document.getElementById(k).value; m = document.getElementById(m).value; n = document.getElementById(n).value; out=str(k); document.getElementById(out).innerHTML=out; }

林韋誠Python自訂函數迴圈write模式a與w

圖片
VS code截圖 期中考筆試重點 write寫入檔案模式mode w=write會覆蓋原有檔案, a=append接續原來檔案, x=create創立新檔案, x與w有何不同? write寫入檔案,預設不換行,換行'\n' print呈現在螢幕,預設換行,不換行end=''。 write寫入用到英文以外的字元(一,a,b)encoding='utf8' 教學影片386

林韋誠開啟資料夾編寫檔案

圖片
程式碼 space, slash, backslash, cr = ' ', '/', '\\', '\n' k = input('輸入規格: ') m = input('輸入橫向規格: ') k,m=int(k),int(m) f = open("林韋誠.txt",'w',encoding="utf8") for i in range(1, k+1): for ii in range(m): for j in range(k-i): f.write(space) f.write(slash) for j in range(2*i-2): f.write(space) f.write(backslash) for j in range(k-i): f.write(space) f.write(cr) for i in range(1, k+1): for ii in range(m): for j in range(i-1): f.write(space) f.write(backslash) for j in range(2*k-2*i): f.write(space) f.write(slash) for j in range(i-1): f.write(space) f.write(cr) f.close() 381 382

林韋誠python內建built-in函數function迴圈loop範圍range

圖片
W3shools內建函數列表 https://www.w3schools.com/python/python_ref_functions.asp   Python has a set of built-in functions. Function Description abs() Returns the absolute value of a number all() Returns True if all items in an iterable object are true any() Returns True if any item in an iterable object is true ascii() Returns a readable version of an object. Replaces none-ascii characters with escape character bin() Returns the binary version of a number bool() Returns the boolean value of the specified object bytearray() Returns an array of bytes bytes() Returns a bytes object callable() Returns True if the specified object is callable, otherwise False chr() Returns a character from the specified Unicode code. classmethod() Converts a method into a class method compile() Returns the specified source as an object, ready to be executed complex() Returns a complex number delattr() Deletes the specified attribute (property or method) from the specified object dict() Returns a dictionary (Ar...

林韋誠python字串string內建built-in方法methods

圖片
VS Code開發環境w3schools截圖 字串程式碼 a="ha,林韋誠很handsome,很變態!很詭異!我使用w3schools學習,也會用vsCode開發環境" b=a.replace('變態','瀟灑') print (a) print (b) print ('幾個很?',a.count('很')) print('很在0,1..位置', a.find('很')) print('很在0,1..位置', a.rfind('很')) print('a的長度',len(a)) print('英文大寫',a.upper()) print('英文小寫',a.lower()) txt = "HELLO,將第一個字母轉成大寫。" x = txt.capitalize() print (x) print (txt.casefold()) y=txt.center(30) print (txt.center(30)) print (y) print (len(y))