# Phrases 2

- before we're <span style="color: rgb(224, 62, 45);">done with</span> for loops, let's <span style="color: rgb(224, 62, 45);">check out</span> some <span style="color: rgb(224, 62, 45);">common mistakes</span> you may <span style="color: rgb(224, 62, 45);">come across</span> while trying this yourself. 在我們完成 for 迴圈之前，讓我們來看看當你自己測試時可能會遇到的一些常見錯誤
- iterate ; iteration ; iterable 
    - a certain type isn't <span style="color: rgb(224, 62, 45);">iterable</span> 某種類型不是可迭代的
    - stop the <span style="color: rgb(224, 62, 45);">iteration</span> process <span style="color: rgb(224, 62, 45);">early</span> 提前停止迭代過程
    - A for loop <span style="color: rgb(224, 62, 45);">iterates</span> <span style="color: rgb(224, 62, 45);">over</span> each element. for 迴圈迭代每個元素
- Python does not <span style="color: rgb(224, 62, 45);">consider</span> "567.89" a number Python 不會將「567.89」視為一個數字
- You can’t <span style="color: rgb(224, 62, 45);">mix</span> single and double <span style="color: rgb(224, 62, 45);">quotes</span> in the same string <span style="color: rgb(224, 62, 45);">or</span> you’ll get a syntax error 您不能在同一個字串中混用單引號和雙引號，否則會產生語法錯誤
- Select the correct <span style="color: rgb(224, 62, 45);">iterative</span> statement 選擇正確的迭代語句
- <span style="color: rgb(224, 62, 45);">Unintended</span> infinite loops, <span style="color: rgb(224, 62, 45);">Unexpected</span> infinite loops 意外的無限迴圈
- Why initializing variables <span style="color: rgb(224, 62, 45);">matters</span> 為什麼初始化變數很重要
- Can you <span style="color: rgb(224, 62, 45);">work out</span> what this function does 您能找出這個函式的作用嗎
- A while loop will <span style="color: rgb(224, 62, 45);">continuously</span> execute code <span style="color: rgb(224, 62, 45);">depending on</span> the value of a condition. while 迴圈會依據條件的值連續執行程式碼
- learn how to <span style="color: rgb(224, 62, 45);">leave</span> the loops <span style="color: rgb(224, 62, 45);">up to</span> the computer 學習如何將迴圈交由電腦處理
- organize;structure 
    - how to organize our code and functions
    - how to structure our code and functions
- Is it even <span style="color: rgb(224, 62, 45);">practical</span> to <span style="color: rgb(224, 62, 45);">avoid</span> systemd any more 不再使用 systemd 是否實際可行
- <span style="color: rgb(224, 62, 45);">Unfortunately</span>, some of these services <span style="color: rgb(224, 62, 45);">don’t have an</span> <span style="color: rgb(224, 62, 45);">alternative</span> any more 不幸的是，有些服務已沒有(不再有)其他選擇了
- Many of the <span style="color: rgb(224, 62, 45);">complaints</span> people <span style="color: rgb(224, 62, 45);">make about</span> it 人們對它的許多抱怨
- <span style="color: rgb(224, 62, 45);">Much like</span> how <span style="color: rgb(224, 62, 45);">decisions</span> affect different <span style="color: rgb(224, 62, 45);">outcomes</span> in our <span style="color: rgb(224, 62, 45);">everyday lives</span> 就像決策如何影響我們日常生活中的不同結果一樣
- her prospect will want a <span style="color: rgb(224, 62, 45);">follow up meeting</span> to <span style="color: rgb(224, 62, 45);">further discuss</span> her company’s proposal 她的潛在客戶會想要一個追蹤會議，進一步討論她公司的提案
- If Maria <span style="color: rgb(224, 62, 45);">closes a deal</span> with a <span style="color: rgb(224, 62, 45);">major potential client</span>, her boss will reward her with <span style="color: rgb(224, 62, 45);">a raise</span> to acknowledge her hard work 如果 Maria 與潛在的大客戶達成交易，她的老闆就會加薪獎勵她，以肯定她的努力工作
- at least;at most 
    - Invalid username. Must be at least 3 characters long
    - Invalid username. Must be at most 15 characters long
- remember that this <span style="color: rgb(224, 62, 45);">technique</span> can <span style="color: rgb(224, 62, 45);">only be used</span> when you're returning a value <span style="color: rgb(224, 62, 45);">inside</span> the if statement 請記住，這技巧只能使用在 if 語句中返回值時
- Companies can set different <span style="color: rgb(224, 62, 45);">criteria</span> for what a valid username looks like. 公司可以為有效的使用者名稱設定不同的標準
- the result is a <span style="color: rgb(224, 62, 45);">Boolean</span> of the <span style="color: rgb(224, 62, 45);">appropriate</span> value 結果是一個適當值的布林值
- <span style="color: rgb(224, 62, 45);">Refactoring</span> code - a process to <span style="color: rgb(224, 62, 45);">restructure</span> code without changing functionality 重構程式碼 - 在不改變功能的情況下重構程式碼的過程
- This <span style="color: rgb(224, 62, 45);">principle</span> can be applied to all <span style="color: rgb(224, 62, 45);">aspects</span> of writing code from picking your variable names to writing <span style="color: rgb(224, 62, 45);">clear concise</span> expressions. 這個原則可以應用在撰寫程式碼的所有方面，從選取變數名稱到撰寫清晰簡潔的表達式
- argument; parameter; variable 
    - The type() function returns the data type of its <span style="color: rgb(224, 62, 45);">argument</span> type() 函式會返回其參數的資料類型
    - we can <span style="color: rgb(224, 62, 45);">pass</span> values into a function as <span style="color: rgb(224, 62, 45);">parameters</span> by passing values like the name or department in the example <span style="color: rgb(224, 62, 45);">earlier</span> 我們可以將值作為參數傳入函數，傳入的值就像前面例子中的名稱或部門一樣
- a little 一點... 
    - Let's make it do a little more 讓我們讓它做多一點
    - added a little more context 加了多一點的背景(上下文)
- All those functions <span style="color: rgb(224, 62, 45);">come as</span> a part of the language, and we'll look into <span style="color: rgb(224, 62, 45);">a bunch of</span> other <span style="color: rgb(224, 62, 45);">built-in</span> Python functions <span style="color: rgb(224, 62, 45);">throughout</span> this course 所有這些函數都是 Python 語言的一部分，我們也會在本課程中研究其他一些內建的 Python 函數
- <span style="color: rgb(224, 62, 45);">It’s like</span> giving yourself and other developers <span style="color: rgb(224, 62, 45);">hints</span> about what kind of data the variable <span style="color: rgb(224, 62, 45);">is supposed to hold</span>. 這就像給自己和其他開發人員提示，變數應該持有什麼樣的資料
- <span style="color: rgb(224, 62, 45);">As</span> you <span style="color: rgb(224, 62, 45);">get more familiar with</span> Python, you’ll be able to <span style="color: rgb(224, 62, 45);">communicate</span> more <span style="color: rgb(224, 62, 45);">efficiently</span> <span style="color: rgb(224, 62, 45);">with</span> computers and <span style="color: rgb(224, 62, 45);">do more with</span> your data analysis tools 隨著您對 Python 越來越熟悉，您將能夠更有效率地與電腦溝通，並使用資料分析工具完成更多工作
- you’ll <span style="color: rgb(224, 62, 45);">surely make progress</span> as a Python learner 作為 Python 學習者，您一定會有所進步
- there are a few <span style="color: rgb(224, 62, 45);">guiding principles</span> and resources that can <span style="color: rgb(224, 62, 45);">help you along the way</span>. 有一些指導原則和資源可以幫助您走這條路
- <span style="color: rgb(224, 62, 45);">Conditional</span> statements: Sections of code that <span style="color: rgb(224, 62, 45);">direct</span> program execution based on specified <span style="color: rgb(224, 62, 45);">conditions</span> 條件語句： 根據指定條件指示程式執行的程式碼區段
- <span style="color: rgb(224, 62, 45);">getting familiar with</span> its fundamental syntax and semantics will be useful for your <span style="color: rgb(224, 62, 45);">future career</span> 熟悉其基本語法和語義對您未來的職業生涯非常有用
- The same is true for programming 程式設計也是如此
- We <span style="color: rgb(224, 62, 45);">went through</span> a lot of new concepts and it might <span style="color: rgb(224, 62, 45);">take several passes</span> until you <span style="color: rgb(224, 62, 45);">feel comfortable with</span> them 我們經歷了許多新的概念，您可能需要花費好幾次的時間，直到您覺得熟悉為止
- Code editors and IDEs are <span style="color: rgb(224, 62, 45);">essential</span> for writing <span style="color: rgb(224, 62, 45);">efficient</span> Python code. 程式碼編輯器和 IDE 對於撰寫有效率的 Python 程式碼是不可或缺的
- It is a <span style="color: rgb(224, 62, 45);">popular</span> IDE that many developers use and <span style="color: rgb(224, 62, 45);">love</span>
- It is <span style="color: rgb(224, 62, 45);">great for</span> beginners because it is <span style="color: rgb(224, 62, 45);">easy to use</span> and has <span style="color: rgb(224, 62, 45);">a large community</span> of users <span style="color: rgb(224, 62, 45);">which means</span> there are <span style="color: rgb(224, 62, 45);">tons (lots) of </span>tutorials and resources <span style="color: rgb(224, 62, 45);">available</span> online 它非常適合初學者，因為它容易使用，而且有一個大型的使用者社群，這表示線上有大量的教學和資源可供使用
- <span style="color: rgb(224, 62, 45);">Overall</span>, PyCharm is a great choice <span style="color: rgb(224, 62, 45);">when it comes to</span> an IDE. 總體而言，就 IDE 而言PyCharm 是最佳的選擇
- An IDE is a software application that provides <span style="color: rgb(224, 62, 45);">comprehensive facilities</span> for software development IDE 是一種軟體應用程式，可為軟體開發提供全面的便利
- Now it’s <span style="color: rgb(224, 62, 45);">your turn</span> to try! <span style="color: rgb(224, 62, 45);">Give this a go</span> yourself. 現在輪到(換)你嘗試了！自己試試吧
- your own 你自己(的) 
    - We won't <span style="color: rgb(224, 62, 45);">get into</span> these in this course but if you want to learn more about them <span style="color: rgb(224, 62, 45);">on your own</span> 我們不會在本課程中涉及這些，不過如果您想自行(靠自己)瞭解更多資訊
    - Discovering and defining your own <span style="color: rgb(224, 62, 45);">career identity</span> makes you better equipped to choose a <span style="color: rgb(224, 62, 45);">career path</span> that <span style="color: rgb(224, 62, 45);">aligns with</span> your <span style="color: rgb(224, 62, 45);">strengths, values, and goals</span> 發現和定義自己的職涯定位，讓您更有能力選擇符合自己優勢、價值和目標的職涯道路
    - Because Asterisk is open source, you have the freedom to make it your own. (...以自己的方式來製作)
    - **IMPORTANT:** I'm **NOT** responsible for any bugs caused by custom-made fixes/additions/tweaks. You use them at your own risk and responsibility! (改機的宣告)

- Python actually has a lot <span style="color: rgb(224, 62, 45);">more advanced</span> numeric <span style="color: rgb(224, 62, 45);">capabilities</span> that are used for data analysis, statistics, machine learning, and other <span style="color: rgb(224, 62, 45);">scientific</span> applications Python 實際上有許多更進階的數值功能，可用於資料分析、統計、機器學習和其他科學應用程式
- You might need to count how many times a <span style="color: rgb(224, 62, 45);">certain</span> word <span style="color: rgb(224, 62, 45);">appear</span>s in a text, or<span style="color: rgb(224, 62, 45);"> work out</span> the average time it takes for <span style="color: rgb(224, 62, 45);">an operation to complete</span> 您可能需要計算某個詞在文本中出現的次數，或計算出一個操作完成所需的平均時間
- you could <span style="color: rgb(224, 62, 45);">have the program ask</span> you for data interactively 可以讓程式以互動方式詢問您資料
- There are <span style="color: rgb(224, 62, 45);">platform-specific</span> scripting languages like PowerShell which is used on Window 有特定平台的腳本語言，例如在 Window 上使用的 PowerShell
- There are also <span style="color: rgb(224, 62, 45);">general-purpose</span> scripting languages <span style="color: rgb(224, 62, 45);">similar to</span> Python 也有類似 Python 的通用腳本語言
- <span style="color: rgb(224, 62, 45);">There's almost always</span> someone on the Internet who's <span style="color: rgb(224, 62, 45);">trying to do what you're doing</span> and can help <span style="color: rgb(224, 62, 45);">point you in</span> the right direction when <span style="color: rgb(224, 62, 45);">you're stuck</span>. 網路上幾乎總會有人在嘗試做您正在做的事情，當您遇到困難時(卡住時)，他們可以幫助您指出正確的方向
- <span style="color: rgb(224, 62, 45);">Not only that</span>, but it's also <span style="color: rgb(224, 62, 45);">used in</span> fast-growing <span style="color: rgb(224, 62, 45);">areas of IT</span> 不僅如此，它也用於快速成長的 IT 領域
- The <span style="color: rgb(224, 62, 45);">most important thing to remember</span> is that you're never alone. 最重要的是要記住，您永遠不會孤單
- It's <span style="color: rgb(224, 62, 45);">really important to keep in mind</span> that even experienced programmers may need to ask a colleague a question <span style="color: rgb(224, 62, 45);">from time to time</span> or look something up on the Internet 即使是有經驗的程式設計師，也可能需要不時向同事請教問題，或在網際網路上尋找資料，記住這點真的很重要
- classmate(s);teammate(s) 同學;隊友
- So if at any point you <span style="color: rgb(224, 62, 45);">get stuck</span>, don't <span style="color: rgb(224, 62, 45);">get discouraged</span>. <span style="color: rgb(224, 62, 45);">Making mistakes helps you improve</span>. <span style="color: rgb(224, 62, 45);">The more</span> you <span style="color: rgb(224, 62, 45);">see</span> failure or <span style="color: rgb(224, 62, 45);">broken code</span> <span style="color: rgb(224, 62, 45);">as</span> an opportunity to learn 因此，如果您在任何時候卡住了，不要灰心。犯錯有助於您的進步。您越是將失敗或有問題的程式碼視為學習的機會
- <span style="color: rgb(224, 62, 45);">A large part of</span> programming is learning through trial and error and asking questions. 程式設計的很大一部分是透過嘗試、錯誤和提問來學習
- if you're <span style="color: rgb(224, 62, 45);">planning a career in IT</span>, <span style="color: rgb(224, 62, 45);">chances are</span> you'll interact with Python quite a bit. 如果您打算從事 IT 工作，您很可能會與 Python 有相當多的互動
- Python <span style="color: rgb(224, 62, 45);">was considered</span> a beginner's language and <span style="color: rgb(224, 62, 45);">was mostly used</span> <span style="color: rgb(224, 62, 45);">for</span> teaching concepts or writing very small simple scripts Python 被認為(視為)是一種初學者語言，主要用於概念教學或非常小的簡單腳本撰寫
- can &gt; may &gt; could &gt; might 可能 (機率)
- <span style="color: rgb(224, 62, 45);">Semantics</span> are the <span style="color: rgb(224, 62, 45);">meaning</span> and <span style="color: rgb(224, 62, 45);">logic</span> of coded statements 語義是編碼語句的意義和邏輯
- so it is important to <span style="color: rgb(224, 62, 45);">be mindful of</span> syntax when writing code 因此在撰寫程式碼時注意語法是很重要的
- If your code <span style="color: rgb(224, 62, 45);">results in</span> an error or an exception, <span style="color: rgb(224, 62, 45);">pay close attention to</span> syntax and <span style="color: rgb(224, 62, 45);">watch out for</span> minor mistakes 如果您的程式碼產生錯誤或異常，請密切注意語法，並留意細微錯誤
- In the meantime, ; Meanwhile 同時;在此期間
- you'll want to install Python on your computer so you can run it locally and <span style="color: rgb(224, 62, 45);">experiment with</span> it <span style="color: rgb(224, 62, 45);">as much as you like</span> 您會想在電腦上安裝 Python，這樣您就可以在本機上運行 Python，並盡情使用它進行試驗
- We'll be here to help you <span style="color: rgb(224, 62, 45);">check that</span> you've really <span style="color: rgb(224, 62, 45);">got your head around</span> these concepts with regular <span style="color: rgb(224, 62, 45);">quizzes</span> like this. 我們會透過這樣的定期測驗，幫助您檢查自己是否真的掌握(明白)了這些概念
- If you <span style="color: rgb(224, 62, 45);">got most of</span> the questions <span style="color: rgb(224, 62, 45);">right</span>, great job. If not, <span style="color: rgb(224, 62, 45);">no worries</span> it's all <span style="color: rgb(224, 62, 45);">part of</span> learning 如果您答對了大部分的問題，那就太好了。如果沒有，不用擔心，這是學習的一部分
- using a computer to perform a <span style="color: rgb(224, 62, 45);">certain</span> task. 使用電腦來執行某項任務
- <span style="color: rgb(224, 62, 45);">human intervention</span> is required to complete the tasks 需要人為介入(干預)才能完成任務
- we'll be talking about when it <span style="color: rgb(224, 62, 45);">makes sense</span> to apply automation and exactly how you do it. 我們將討論何時應用自動化是合理的，以及你實際該如何作
- some tasks just <span style="color: rgb(224, 62, 45);">aren't suited for</span> automation. 有些任務(工作) 就是不適合自動化
- fundation;basic;fundamental 基礎;基本 
    - the <span style="color: rgb(224, 62, 45);">fundamental</span> concepts of computer programming 電腦程式設計的基礎概念
    - The program <span style="color: rgb(224, 62, 45);">is designed to</span> teach you the <span style="color: rgb(224, 62, 45);">foundations</span> of programming in Python 本課程旨在教授您 Python 程式設計的基礎
    - <span style="color: rgb(224, 62, 45);">Throughout</span> this course, we'll be teaching you the<span style="color: rgb(224, 62, 45);"> basics</span> of programming and automation 在整個課程中，我們將教您程式設計和自動化的基本知識
- you can <span style="color: rgb(224, 62, 45);">earn</span> the certificate <span style="color: rgb(224, 62, 45);">whenever</span> you finish 無論你何時完成，你都可以獲得證書
- When you <span style="color: rgb(224, 62, 45);">enroll in</span> the course 當你報名參加這課程
- You'll get <span style="color: rgb(224, 62, 45);">hands-on experience</span> with programming concepts through <span style="color: rgb(224, 62, 45);">interactive exercise</span>s and <span style="color: rgb(224, 62, 45);">real-world examples</span>. 您將透過互動式練習和實際範例，親身體驗程式設計的概念
- The role of a sysadmin can <span style="color: rgb(224, 62, 45);">vary a lot from</span> company <span style="color: rgb(224, 62, 45);">to</span> company and even within different teams in the same company. 系統管理員的角色會因公司不同而有很大差異，甚至在同一公司的不同團隊中也會有所不同
- <span style="color: rgb(224, 62, 45);">In any case</span>, this program is <span style="color: rgb(224, 62, 45);">tailor-made</span> for you. 無論如何，本課程都是為您量身打造的
- <span style="color: rgb(224, 62, 45);">tailored</span> to your needs 針對您的需求量身打造
- automation; automate; automatically;automatic 
    - automating repetitive tasks
    - automated processes complete instructions exactly as coded
    - Scripts can be used for automating specific tasks
    - the automatic system
    - understand their role in automation
    - focus on how this language applies to automating tasks in the world of IT systems support
    - we'll be talking about automation, which is the process of getting computers to automatically do a task that us humans normally have to do by hand 我們將討論自動化，這個是讓電腦自動執行人類通常必須手動完成的工作的過程
- So don't be afraid to make mistakes, it will give you a leg up. 所以不要害怕犯錯，這會讓你更有優勢
- Working in IT is more than just a job. It's a career path 從事 IT 不只是一份工作。它是一條職涯道路
- <span style="color: rgb(224, 62, 45);">The common thread across all of these roles</span> is <span style="color: rgb(224, 62, 45);">knowing how to</span> write code to solve problems and <span style="color: rgb(224, 62, 45);">automate solutions</span> 所有這些角色的共通點是知道如何編寫程式碼來解決問題和自動化解決方案
- Those who push themselves to learn how to code in Python typically saw strong <span style="color: rgb(224, 62, 45);">career growth</span>. 那些努力學習 Python 程式碼的人，通常都有強勁的職涯成長
- <span style="color: rgb(224, 62, 45);">To be able to</span> take courses <span style="color: rgb(224, 62, 45);">at my own pace and rhythm</span> has been an amazing experience 能以自己的步調和節奏上課，是個很棒的經驗
- Commit to <span style="color: rgb(224, 62, 45);">experimenting with</span> AI for something that will make a real difference to you and your work 致力於嘗試使用 AI，為您和您的工作帶來真正的不同
- Gen AI tools can help you get started with writing a program <span style="color: rgb(224, 62, 45);">from scratch</span> too. This can <span style="color: rgb(224, 62, 45);">save</span> lots of time and <span style="color: rgb(224, 62, 45);">boost productivity</span>. Gen AI 工具也可以幫助您從零開始編寫程式。這可以節省許多時間並提昇生產力
- carefully consider if you need to use <span style="color: rgb(224, 62, 45);">confidential or sensitive</span> information to perform your task 請謹慎考慮是否需要使用機密或敏感(機敏)資訊來執行任務
- AI has helped <span style="color: rgb(224, 62, 45);">make me</span> more efficient and creative in my <span style="color: rgb(224, 62, 45);">daily work</span>, 在我的日常工作裡 AI 已經協助使我更有效率及創新
- add <span style="color: rgb(224, 62, 45);">a new capability to</span> start debugging directly from chat 新增一個功能從 chat 直接啟動偵錯
- incorporate 整合;合併;加入;融入 
    - Luis will <span style="color: rgb(224, 62, 45);">introduce you to</span> the ways that he <span style="color: rgb(224, 62, 45);">incorporates AI into</span> his daily workflows to do things like check code, understand system vulnerabilities, and more. Luis 將向您介紹他如何將 AI 結合日常工作流程，以執行檢查程式碼、瞭解系統漏洞等工作
    - You could <span style="color: rgb(224, 62, 45);">incorporate</span> a conditional statement to only perform these actions if the device IDs meet <span style="color: rgb(224, 62, 45);">certain</span> conditions（合併/引入；特定的/某些）
- In the <span style="color: rgb(224, 62, 45);">upcoming</span> series of videos you will <span style="color: rgb(224, 62, 45);">be introduced to</span> Luis 在接下來的一系列影片中，會向您介紹 Luis
- You can also use generative AI to <span style="color: rgb(224, 62, 45);">augment routine tasks</span> 您也可以使用產生式 AI 來增強例行性工作
- <span style="color: rgb(224, 62, 45);">simplify</span> day-to-day work; <span style="color: rgb(224, 62, 45);">streamline</span> communications 簡化
- offering powerful <span style="color: rgb(224, 62, 45);">capabilities</span> to analyze data, <span style="color: rgb(224, 62, 45);">streamline</span> communications, and make <span style="color: rgb(224, 62, 45);">informed decisions</span> 提供強大的功能來分析資料、簡化溝通並做出明智的決策
- But this <span style="color: rgb(224, 62, 45);">functionality</span> is <span style="color: rgb(224, 62, 45);">mostly</span> not needed in an embedded application 但嵌入式應用程式大多不需要這些功能
- details that <span style="color: rgb(224, 62, 45);">quantify</span> an accomplishment 量化一個工作成就的細節
- Everybody else is doing so much better 所有其他人都做得更好
- Reflecting on your career <span style="color: rgb(224, 62, 45);">no matter where you've worked</span> 反思你的職涯，無論你在哪裡工作
- <span style="color: rgb(224, 62, 45);">There's no way you can know everything</span>. We have people who work on those things across the company and <span style="color: rgb(224, 62, 45);">you don't have to know everything</span>. 你不可能什麼都知道。我們公司有專人負責這些事情，你不需要什麼都知道
- Those <span style="color: rgb(224, 62, 45);">folks</span> can support you, and they can also <span style="color: rgb(224, 62, 45);">be</span> <span style="color: rgb(224, 62, 45);">a great example of how far you've come</span> when you share your skills with them as well 這些人可以支援你，當你與他們分享你的技能時，他們也可以成為你的好榜樣
- If your <span style="color: rgb(224, 62, 45);">internet service</span> is not fast enough <span style="color: rgb(224, 62, 45);">to allow for</span> a video interview, you can <span style="color: rgb(224, 62, 45);">request</span> a phone interview <span style="color: rgb(224, 62, 45);">instead</span> 如果您的網際網路服務速度不夠快，無法進行視訊面試，您可以要求電話面試
- you should download that software, <span style="color: rgb(224, 62, 45);">if you don't have it already</span> 你應該下載該軟體 (假如你還沒有)
- <span style="color: rgb(224, 62, 45);">Typically</span>, the recruiter or hiring manager will <span style="color: rgb(224, 62, 45);">reach out to you</span> over the phone or email <span style="color: rgb(224, 62, 45);">to</span> <span style="color: rgb(224, 62, 45);">share</span> information <span style="color: rgb(224, 62, 45);">about</span> <span style="color: rgb(224, 62, 45);">which software will be used</span> for the interview 一般而言，招聘人員或人事經理會透過電話或電子郵件與您聯繫，分享面試時將使用的軟體資訊
- you’ll also be <span style="color: rgb(224, 62, 45);">going into detail</span> about your <span style="color: rgb(224, 62, 45);">knowledge of the profession</span> 你還會詳述你的專業知識
- you’ll talk with the recruiter or hiring manager about yourself, <span style="color: rgb(224, 62, 45);">the kind of work</span> <span style="color: rgb(224, 62, 45);">or training</span> you have, and why you want the job 您將與招聘人員或用人經理談到您自己、您所從事的工作或接受過的訓練，以及應徵這份工作的原因
- It’s important to <span style="color: rgb(224, 62, 45);">showcase</span> your best self in the introductory phone call 在介紹電話中展示最好的自己非常重要
- It shows that <span style="color: rgb(224, 62, 45);">you're willing to</span> take the time to ... 這展現了你願意花時間...
- You've learned a lot through this program that can <span style="color: rgb(224, 62, 45);">help you stand out as</span> a candidate 透過這個課程，你學到了很多，這些可以幫助你在應徵者中脫穎而出
- What is an effective way <span style="color: rgb(224, 62, 45);">to stand out</span> as a candidate 作一個應試者什麼有效方法可以讓你脫穎而出
- can help <span style="color: rgb(224, 62, 45);">set you apart</span> <span style="color: rgb(224, 62, 45);">as a great candidate</span> for the job 協助讓您脫穎而出，成為該工作的最佳人選
- If <span style="color: rgb(224, 62, 45);">you’d like</span>, you can let the company know that you appreciate the opportunity to be considered and that you’d be interested in any future roles that might be a good fit 如果您願意的話，您可以讓公司知道您很感激有機會被考慮，而且您對未來任何可能適合的職位都很感興趣
- XXX and YYY are two <span style="color: rgb(224, 62, 45);">distinct</span> components XXX 與 YYY 是兩個不同的元件
- improving model <span style="color: rgb(224, 62, 45);">accuracy</span>, reducing <span style="color: rgb(224, 62, 45);">hallucinations</span>, and <span style="color: rgb(224, 62, 45);">tailoring</span> LLMs for specific tasks 改善模型精確度, 減少幻覺及為特定任務定制 LLMs
- <span style="color: rgb(224, 62, 45);">While</span> fine-tuning may <span style="color: rgb(224, 62, 45);">be ideal for certain</span> use cases 雖然微調可能很適用某些應用案例
- generative model; generation quality; generated response 生成式模型; 生成品質; 生成的回應
- Once the <span style="color: rgb(224, 62, 45);">most relevant</span> data points 最相關的資料點
- an external knowledge source <span style="color: rgb(224, 62, 45);">in relation to</span> a user query 與使用者查詢相關的外部知識來源
- My team <span style="color: rgb(224, 62, 45);">works closely with</span> our remarkable security experts（與...密切合作）
- It's likely that...; It's unlikely that... (有可能...; 不可能...)
- Python <span style="color: rgb(224, 62, 45);">considers a new line to</span> be a type of whitespace. (將...視為...)
- we're going to <span style="color: rgb(224, 62, 45);">put together</span> everything we learned about lists and strings (整合在一起)
- This process <span style="color: rgb(224, 62, 45);">is often referred to</span> as parsing(通常是指.../稱為...)
- This will allow us to analyze them <span style="color: rgb(224, 62, 45);">more easily</span>.(更容易地)
- <span style="color: rgb(224, 62, 45);">Essential</span> Python components for <span style="color: rgb(224, 62, 45);">automation</span>（基本/必要; 自動化）
- you might <span style="color: rgb(224, 62, 45);">iterate</span> through a list of device IDs using a for loop（迭代）
- you have just <span style="color: rgb(224, 62, 45);">been informed of</span> a new criteria for employee IDs.（被告知...）
- As one example; As an example (舉一個例子)
- Regardless of the <span style="color: rgb(224, 62, 45);">timeframe</span>（時間範圍）
- When new models are released you'll simply <span style="color: rgb(224, 62, 45);">swap</span> them <span style="color: rgb(224, 62, 45);">out</span> <span style="color: rgb(224, 62, 45);">without needing to</span> rewrite your <span style="color: rgb(224, 62, 45);">entire codebase</span>. (切換; 不需要; 整個程式庫)
- with great power comes great responsibility (能力越大, 責任就越大)
- <span style="color: rgb(224, 62, 45);">At the moment</span>, there is no unified way (目前)
- providing flexibility for <span style="color: rgb(224, 62, 45);">different usage scenarios</span> (不同使用情境的彈性)
- <span style="color: rgb(224, 62, 45);">As shown </span>in the images<span style="color: rgb(224, 62, 45);"> </span>provided (如提供的圖片顯示)
- <span style="color: rgb(224, 62, 45);">requiring no</span> GPU / <span style="color: rgb(224, 62, 45);">without the need for</span> a GPU (不需要 GPU)
- to provide a <span style="color: rgb(224, 62, 45);">more comprehensive</span> toolset for users (更 全面/完善)
- you have to deal with <span style="color: rgb(224, 62, 45);">plenty of</span> image files (大量的)
- Fortunately 16GB of RAM is <span style="color: rgb(224, 62, 45);">more than sufficient</span> for many home users. (綽綽有餘)
- which could lead to <span style="color: rgb(224, 62, 45);">false positives</span> (這個可能導致偽陽性/誤警報/誤報)
- Does not <span style="color: rgb(224, 62, 45);">heat up</span> even under heavy load (不會過熱既使在高負荷下)
- then the issues started to <span style="color: rgb(224, 62, 45);">show up</span> (然後問題就開始出現)
- I have no idea <span style="color: rgb(224, 62, 45);">what's that for</span> (我不知道那是做什麼)
- Thanks for your reply. 
    - I appreciate your message.
    - I was so pleased to hear from you.
    - Thank you so much for responding to my email.
    - Thanks for getting back to me.
    - Thank you for the prompt reply.
    - Thank you for the quick reply.
- In simple words/In simple terms (簡單來說), In summary (總之)