Py基礎組,已於2021/3/28 PM 9:00,進行Day 8課程討論。
相關資訊,更新於此
分享一個在做8-82練習題的經歷。
對於數學,不是很在行,所以google了一下,何謂質數。
於是,找到了以下兩個連結。
【觀念】什麼是質數?
【例題】質數的判斷
按照影片中,質數的判斷方式,於是就硬刻了。
最後,發現可以通過老師提供的test your code。
day-8-2-test-your-code
def greet_with_name(first_name, last_name):
print(f"Hello, {first_name} {last_name}")
greet_with_name("Peter", "Chan")
first_name and last_name are parameters of greet_with_name
the values Peter
and Chan
are arguments.
https://docs.python.org/3/glossary.html#term-parameter
https://docs.python.org/3/glossary.html#term-argument
https://docs.python.org/3/faq/programming.html#faq-argument-vs-parameter
1個讚
在這裡,我把這兩個名詞的位置,搞錯了。
謝謝Tim,即時正確的提出補充。