分享

5 个 ChatGPT 功能可促进日常工作



1.png


ChatGPT 彻底改变了开发代码的方式。 然而,大多数软件开发人员和数据专家仍然没有使用 ChatGPT 来改进和简化他们的工作。

这就是为什么我在这里概述 5 个不同的功能,以提高您日常工作的速度和质量。

您可以在日常工作中使用它们。一起来了解一下吧

警告:切勿在 ChatGPT 中使用关键代码或信息。


1.生成你的编码骨架
从头开始构建新项目时,ChatGPT 是我的秘密武器。只需几个提示,它就可以生成我需要的代码框架,包括我选择的技术、框架和版本。 它不仅每次为我节省了至少一个小时左右的工作时间,而且还有助于使我的文档(或团队的文档)井井有条并保持最新。 这就像在团队中多了一副手!

例如,假设我想使用一些外部 API。我可以要求 ChatGPT 为我起草一个初始代码结构。


使用 Python 生成集成外部 API 的样板代码。


ChatGPT 立即回答:


1.png

或者我可以请求一个骨架 来使用 Selenium 抓取 LinkedIn,ChatGPT 会给我以下输出。
  1. from selenium import webdriver
  2. from selenium.webdriver.common.keys import Keys
  3. import time
  4. # Initialize the web driver
  5. driver = webdriver.Firefox()
  6. # Navigate to LinkedIn
  7. driver.get("https://www.linkedin.com/")
  8. # Find the email and password input fields
  9. email = driver.find_element_by_id("username")
  10. password = driver.find_element_by_id("password")
  11. # Enter your credentials
  12. email.send_keys("YOUR_EMAIL")
  13. password.send_keys("YOUR_PASSWORD")
  14. # Click the login button
  15. driver.find_element_by_xpath("//button[@type='submit']").click()
  16. # Wait for the page to load
  17. time.sleep(5)
  18. # Navigate to the profile of the desired user
  19. driver.get("https://www.linkedin.com/in/USER_PROFILE_NAME")
  20. # Extract the information you want from the page
  21. name = driver.find_element_by_xpath("//span[@class='inline t-24 t-black t-normal break-words']").text
  22. location = driver.find_element_by_xpath("//span[@class='t-16 t-black t-normal inline-block']").text
  23. print(name)
  24. print(location)
  25. # close the browser
  26. driver.quit()
复制代码
容易,对吧?尝试用你能想象到的任何项目来挑战 ChatGPT。



2.研究与比较
就如何实施某些事情做出决定可能很困难, 尤其是当有多种选择可供选择时。我的首选方法是为每种方法创建一个基本的概念证明,然后将它们进行比较。但是,在 ChatGPT 的帮助下, 这个过程变得简单多了。

我现在可以直接询问它的专家意见,了解哪个选项或库最适合我的代码开发。 这节省了我在决策过程中的时间和精力,并确保我使用最好的工具来完成工作。

假设我想处理地理空间数据,但不确定是否应该 Geopandas使用 Plotly. 我可以让 ChatGPT 为我进行比较——包含一个类型 ;)——它会立即回答两个库之间的主要区别。


1.png

如果现在我想抓取一个网站,我可以询问最好的图书馆是什么。ChatGPT 使用 Python 中最流行的网络抓取库来回答。


1.png

你甚至可以询问想要抓取的网站的最佳选择是什么——尽管 ChatGPT 很可能会警告你这将违反该网站的内容政策——所以要小心。


抓取社交网络的最佳选择是什么?


1.png


3.理解代码
我们都去过那里, 努力理解不是我们创建的代码库。 浏览复杂且组织不当的代码(也称为 意大利面条代码) 可能是一项令人沮丧且耗时的任务。

但是,有了 ChatGPT,理解新的代码库就变得容易多了。我现在可以简单地要求它解释代码的功能并立即理解它。 无需再浪费宝贵的时间和精力来破译糟糕的代码。

假设我正在尝试抓取 Linkedin,我在互联网上发现了一个随机代码,该代码应该可以向下滚动 Linkedin 工作机会网站。


以下代码的作用是什么?[在此处插入代码]
  1. #We find how many jobs are offered.
  2. jobs_num = driver.find_element(By.CSS_SELECTOR,"h1>span").get_attribute("innerText")
  3. if len(jobs_num.split(',')) > 1:
  4.     jobs_num = int(jobs_num.split(',')[0])*1000
  5. else:
  6.     jobs_num = int(jobs_num)
  7. jobs_num   = int(jobs_num)
  8. #Here I choose manually a number of jobs, so it wont take that long:
  9. jobs_num = 1000;
  10. #We create a while loop to browse all jobs.
  11. i = 2
  12. while i <= int(jobs_num/2)+1:
  13.     #We keep scrollind down to the end of the view.
  14.     driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")
  15.     i = i + 1
  16.     print("Current at: ", i, "Percentage at: ", ((i+1)/(int(jobs_num/2)+1))*100, "%",end="\r")
  17.     try:
  18.         #We try to click on the load more results buttons in case it is already displayed.
  19.         infinite_scroller_button = driver.find_element(By.XPATH, ".//button[@aria-label='Load more results']")
  20.         infinite_scroller_button.click()
  21.         time.sleep(0.1)
  22.     except:
  23.         #If there is no button, there will be an error, so we keep scrolling down.
  24.         time.sleep(0.1)
  25.         pass
复制代码
ChatGPT 会立即对上面的代码进行非常详细的解释。您甚至可以在给定的代码部分中询问更多详细信息—— 只要稍微玩一下 ChatGPT,您就会发现它可以创造的所有奇迹。



1.png

4.在我们的代码中添加注释
ChatGPT 还可以帮助我们提高自己代码的质量和可维护性。通过要求它逐行添加注释,我们可以确保我们的代码在发布前得到正确记录。这消除了对未注释代码的需要,并使其他人更容易理解和使用我们的代码。

ChatGPT 可以显着提高可读性、可维护性和与他人的协作。

假设前面的代码根本没有注释。我们可以让 ChaGPT 直接给它添加注释。


为以下代码添加注释 [在此处插入代码]


  1. # Find the number of jobs offered on the website
  2. jobs_num = driver.find_element(By.CSS_SELECTOR,"h1>span").get_attribute("innerText")
  3. # Check if the number of jobs contains a ',' and if so, convert it to number * 1000
  4. if len(jobs_num.split(',')) > 1:
  5.     jobs_num = int(jobs_num.split(',')[0])*1000
  6. else:
  7.     jobs_num = int(jobs_num)
  8. # Convert jobs_num to an integer
  9. jobs_num = int(jobs_num)
  10. # Set the number of jobs to scrape to 1000
  11. jobs_num = 1000;
  12. # Initialize a counter variable to scroll through the jobs
  13. i = 2
  14. # Start a while loop to scroll through the jobs
  15. while i <= int(jobs_num/2)+1:
  16.     # Scroll to the bottom of the page
  17.     driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")
  18.     # Increment the counter variable
  19.     i = i + 1
  20.     # Print the current number of jobs scrolled through and the percentage of completion
  21.     print("Current at: ", i, "Percentage at: ", ((i+1)/(int(jobs_num/2)+1))*100, "%",end="\r")
  22.     try:
  23.         # Try to locate the "Load more results" button and click on it
  24.         infinite_scroller_button = driver.find_element(By.XPATH, ".//button[@aria-label='Load more results']")
  25.         infinite_scroller_button.click()
  26.         # Sleep for 0.1 seconds
  27.         time.sleep(0.1)
  28.     except:
  29.         # If the button is not present, sleep for 0.1 seconds and continue scrolling
  30.         time.sleep(0.1)
  31.         pass
复制代码
令人印象深刻吧?没有更多的代码没有注释!:D


5.使用某种风格重写我们的代码
ChatGPT 不仅是理解陌生代码的宝贵工具, 而且还可以帮助我们确保自己的代码遵循行业标准和惯例。 通过要求它更正我们的代码以符合 Pep-8 约定——或者甚至为我们的编码风格创建自定义约定——我们可以避免在合并来自不同存储库或团队的代码时进行昂贵且耗时的重构。

这有助于简化协作流程并提高效率。 总的来说,ChatGPT 是一个多功能工具,可以提高我们代码库的质量和可维护性。

如果我们让ChatGPT用Pep-8标准写之前的代码,它会直接给我们重构后的代码。

你能用 Pep8 标准重写下面的代码吗 [Insert code here]


1.png

主要结论

我希望读完本文后,我们会意识到 ChatGPT 可以 帮助我们提高工作效率并创造更高质量的输出。 我知道很容易陷入认为人工智能最终会接管我们工作的陷阱, 但正确的人工智能可以成为一种强大的资产,可以为我们所用。

然而, 重要的是要记住,在与 AI 合作时,批判性思维仍然是关键,就像在与我们的人类同事合作时一样。

因此,在你急于实施 AI 生成的响应之前,请确保先花时间审查和评估它们。相信我,这最终是值得的!



------------------我的底线------------------------
中文版ChatGPT
https://chat.aboutyun.com/

加微信赠送Chat GPT教程:



获取更多资源:
领取100本书+1T资源
http://www.aboutyun.com/forum.php?mod=viewthread&tid=26480

大数据5个项目视频
http://www.aboutyun.com/forum.php?mod=viewthread&tid=25235

名企资源、名企面试题、最新BAT面试题、专题面试题等资源汇总
https://www.aboutyun.com/forum.php?mod=viewthread&tid=27732

没找到任何评论,期待你打破沉寂

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关闭

推荐上一条 /2 下一条