發表文章

目前顯示的是 2月, 2024的文章

20240229.晚上買順成蛋糕,甲班上課

圖片
甲班程式設計 101慧. 「很CUTE,很活潑!很有熱忱!」就是要如此大聲說出自己的優點!所以要用原始圖形呈現自己的學習成果。https://huilii.blogspot.com/2024/02/a-hacutew3schoolsvscode-b-a_28.html 102蕭. 確實使用vscode截圖清晰。https://hsiao-yu0711.blogspot.com/2024/03/pythonbuilt-infunctionlooprange-3-04.html 程式碼前後加上pre控制排列。https://hsiao-yu0711.blogspot.com/2024/02/pythonstringmethods.html 111林.https://euhffh822.blogspot.com/ 0307. vscode等都有做,盡量多寫心得,讓自己更有印象,提升自己的能力。https://euhffh822.blogspot.com/2024/03/pythonbuilt-infunctionsstringmethodsloop.html 有改進,就是提升自己。 https://euhffh822.blogspot.com/ 2024/02/pythonstringmethods.html 127恩.https://meimei20041026.blogspot.com/ 可再加入footnote.https://meimei20041026.blogspot.com/2024/03/blog-post.html 甲班套裝軟體 101慧. yahoo練習使用full screen與comparison. https://huilii.blogspot.com/2024/02/vs.html 102蕭. 變化背景與高度,優秀!https://hsiao-yu0711.blogspot.com/2024/02/vs.html 111林.https://euhffh822.blogspot.com/ 自訂背景顏色!https://euhffh822.blogspot.com/2024/02/vs.html 127恩.https://meimei20041026.blogspot.com/ 可再...

劉任昌電腦科技發展歷史:軟體vs硬體

圖片
黃仁勳維基百科 黃仁勳Jensen Huang維基百科嵌入以上網頁指令 <iframe width="100%" height="400" src="https://zh.wikipedia.org/zh-tw/%E9%BB%83%E4%BB%81%E5%8B%B3"></iframe> 蘇姿丰Lisa Su維基百科 蘇姿丰維基百科嵌入以上網頁指令 <iframe height="400" src="https://zh.wikipedia.org/zh-tw/%E8%98%87%E5%A7%BF%E4%B8%B0" width="100%"></iframe> nvidia, amd, tsm, intel過去一年股價表現 在紐約證券交易所交易的TSM是台積電在美國上市的ADR美國存託憑證,一股ADR是五股台灣股票。 段落高度line-height <p style="line-height: 1.5; font-size: 2em; background-color: green; color: white; font-weight:true; ">在紐約證券交易所交易的TSM是台積電在美國上市的ADR美國存託憑證,一股ADR是五股台灣股票。</p>

劉任昌Python字串string方法methods

圖片
VS Code與w3schools截圖 程式碼 txt = "hello劉任昌, and welcome to my world.ctrl+A" x = txt.capitalize() print (x) print(txt.replace("任昌", "總統")) print("and位置",txt.find("and")) 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)) w3schools字串方法列表 https://www.w3schools.com/python/python_ref_string.asp Method Description capitalize() Converts the first character to upper case casefold() Converts string into lower case center() Returns a centered string count() Returns the number of ...