【Python】將dict字典的Key值連在一起列印
dic = {"key 1":"value 1","key b":"value b"}
keyPrint =""
#print the keys:
for key in dic:
keyPrint += str(key)+" "
print (keyPrint)
Friday, 15 May 2020
Saturday, 9 May 2020
Python教學網頁
Python-TQC範例試卷
https://www.tqcplus.org.tw/learn_download.asp
https://www.tqc.org.tw/user/Example/B973D99B-4C85-44B2-9133-BD34827395B4.pdf
TQC Python題庫參考解答
https://github.com/DatHarry/TQC-answer-for-Python/blob/master/TQC+_Python%E9%A1%8C%E5%BA%AB%E8%A7%A3%E7%AD%94.ipynb
Python教學網頁
https://python.zeef.com/
https://www.tqcplus.org.tw/learn_download.asp
https://www.tqc.org.tw/user/Example/B973D99B-4C85-44B2-9133-BD34827395B4.pdf
TQC Python題庫參考解答
https://github.com/DatHarry/TQC-answer-for-Python/blob/master/TQC+_Python%E9%A1%8C%E5%BA%AB%E8%A7%A3%E7%AD%94.ipynb
Python教學網頁
https://python.zeef.com/
Thursday, 7 May 2020
圖片路徑 401 - 未經授權: 因為認證無效而拒絕存取。 使用您提供的認證,沒有權限檢視此目錄或網頁。
【錯誤訊息】
圖片路徑 401 - 未經授權: 因為認證無效而拒絕存取。 使用您提供的認證,沒有權限檢視此目錄或網頁。
【解決方式】
Step1:開啟Internet Information Services (IIS) 管理員,針對指定站台目錄,再按右邊點「編輯權限」
Step2:點選頁籤「安全性」,再按「編輯」,再按「新增」,輸入字符「Authenticated Users」
Step3:權限勾選「讀取和執行」、「列出資料夾內容」、「讀取」,再按「確定」就大功告成
Tuesday, 5 May 2020
錯誤 15 指派給 的運算式必須為常數
錯誤 15 指派給 的運算式必須為常數
【說明】
常數是在編譯時期已知且不會在程式存留期變更的不可變值。 常數是使用 const 修飾詞所宣告。 只有 C#內置類型(不包括System.Object)可以聲明為const。 使用者定義型別 (包括類別、結構和陣列) 不能是 const。 使用 readonly 修飾詞來建立在執行階段一次初始化的類別、結構或陣列 (例如在建構函式中),因而無法進行變更。
Reference Site:
Saturday, 2 May 2020
Python Get Meta Data Content
Get meta tag content property with BeautifulSoup and Python
from bs4 import BeautifulSoup
title = soup.find("meta", property="og:title")
Reference Site:
https://stackoverflow.com/questions/36768068/get-meta-tag-content-property-with-beautifulsoup-and-python
https://stackoverflow.com/questions/38009787/how-to-extract-meta-description-from-urls-using-python
How to use python pyquery to get metadata content
Not sure
keyword = query("meta[name='keywords']").text()
Reference Site:
https://stackoverflow.com/questions/20382578/how-can-i-get-content-value-from-meta-tag-using-pyquery
from bs4 import BeautifulSoup
title = soup.find("meta", property="og:title")
Reference Site:
https://stackoverflow.com/questions/36768068/get-meta-tag-content-property-with-beautifulsoup-and-python
https://stackoverflow.com/questions/38009787/how-to-extract-meta-description-from-urls-using-python
How to use python pyquery to get metadata content
Not sure
keyword = query("meta[name='keywords']").text()
Reference Site:
https://stackoverflow.com/questions/20382578/how-can-i-get-content-value-from-meta-tag-using-pyquery
Friday, 1 May 2020
如何查看本機瀏覽器開啟網址之User Agent
如何查看本機瀏覽器開啟網址之User Agent
https://www.ip138.com/useragent/
相關資料可參考
https://ithelp.ithome.com.tw/articles/10209356
https://www.ip138.com/useragent/
相關資料可參考
https://ithelp.ithome.com.tw/articles/10209356
Subscribe to:
Posts (Atom)
IIS HTTP Error 403.18
HTTP Error 403.18 - Forbidden The specified request cannot be processed in the application pool that is configured for this resource on the...
-
錯誤 CS0122 'QueryExtension.CheckRatekeyData(string)' 由於其保護層級之故,所以無法存取。
-
C# List 取前幾筆