「python註解快捷鍵」的推薦目錄:
- 關於python註解快捷鍵 在 コバにゃんチャンネル Youtube 的最佳解答
- 關於python註解快捷鍵 在 大象中醫 Youtube 的最佳貼文
- 關於python註解快捷鍵 在 大象中醫 Youtube 的最讚貼文
- 關於python註解快捷鍵 在 [問題] 註解技巧相關問題請教- 看板Python - 批踢踢實業坊 的評價
- 關於python註解快捷鍵 在 jupyter註解快捷鍵的推薦與評價,FACEBOOK和網紅們這樣回答 的評價
- 關於python註解快捷鍵 在 Visual studio 環境設定—— 字型、套件、快捷鍵 - 伊果的沒人看 ... 的評價
- 關於python註解快捷鍵 在 Python in Visual Studio Code - GitHub 的評價
- 關於python註解快捷鍵 在 VSCode新手入門—常用快捷鍵/怎樣快速切換專案 - YouTube 的評價
python註解快捷鍵 在 大象中醫 Youtube 的最佳貼文
python註解快捷鍵 在 大象中醫 Youtube 的最讚貼文
python註解快捷鍵 在 Visual studio 環境設定—— 字型、套件、快捷鍵 - 伊果的沒人看 ... 的推薦與評價
記錄一下Visual studio 的環境設定,包括字型、套件及快捷鍵。 ... 自動補完和註解說明等等 ... 我要訂便當(2): 用Python + Sqlite 儲存訂單 ... ... <看更多>
python註解快捷鍵 在 Python in Visual Studio Code - GitHub 的推薦與評價
教大家如何建立自己的Visual Studio Code Python 開發環境 . Contribute to twtrubiks/vscode_python_note ... 打開後,快捷鍵 Ctrl+Shift+P ,然後輸入settings. ... <看更多>
python註解快捷鍵 在 [問題] 註解技巧相關問題請教- 看板Python - 批踢踢實業坊 的推薦與評價
各位版上的大大好
我已一段程式碼來說明我的問題
import time
from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
driver = webdriver.Chrome()
driver.get("https://pro.104.com.tw/hrm/psc/home.action")
driver.find_element_by_id("email").send_keys("[email protected]")
driver.find_element_by_id("pwd").send_keys("XXXXXXXXXX")
driver.quit()before_login_url=driver.current_url
driver.find_element_by_id("submit").click()
time.sleep(10)
after_login_url=driver.current_url
if before_login_url == after_login_url:
print("unchanged")
else:
print("changed")
time.sleep(10)
driver.find_element_by_id("punchCardBtn").click()
driver.quit()
這些黃色程式碼當初的存在都是因為除錯用途,當我要編譯成執行檔的時候,我會想把他
拿掉。
這時候問題來了,Python嚴格要求縮排做為程式的段落。
所以,不論我是單行註解還是多行註解都會遇到調整縮排的問題。
如果程式碼行數少的的話還沒有什麼問題如果遇到多的應該會瘋掉。
有沒有大大能夠指導一下,像這種問題可以用什麼方法解決?
感謝。
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 113.196.183.168
※ 文章網址: https://www.ptt.cc/bbs/Python/M.1526440343.A.C14.html
... <看更多>