🔥 มาเช็คค่าใน List ง่าย ๆ ด้วย Any และ All กันเถอะ !!
.
👉 Any และ All เป็นฟังก์ชันในภาษา Python ที่ใช้เช็คค่าใน List และ Return ออกมาเป็น True หรือ False ซึ่งทั้งสองจะทำให้เราเขียนโค้ดได้สั้นลง โดยไม่ต้องเขียนวนลูปยาว ๆ เพื่อเช็คค่าใน List ให้ยุ่งยากเลย บอกเลยว่าสะดวกขึ้นสุด ๆ !
.
ไปดูวิธีการใช้งานของแต่ละตัวกันเลย !!
.
🔹 Any (เอาบางตัว) - จะ Return ค่ากลับมาเป็น True เมื่อมีค่าแค่บางตัวเป็น True
.
มาดูให้เห็นภาพกันเลยดีกว่า
any([true, false, false]) # Result in True
any([false, false, false]) # Result in False
.
📑 ตัวอย่าง
num = [1,2,3,4,5,6,7,8]
test = any(ans % 2 != 0 for ans in num)
print(test) # result => True
.
จากโค้ดจะเห็นว่ามันจะ Return ค่าออกมาเป็น True เพราะ มีบางค่าใน List เป็นเลขคี่ และหาร 2 ไม่ลงตัว ยกเว้น 2, 4, 6, และ 8 นั่นเอง
.
มาดู All กันบ้างจ้า !!
.
🔸 All (เอาหมด) - จะ Return ค่ากลับมาเป็น True เมื่อมีค่าทุกตัวเป็น True เท่านั้น
.
ดูชัด ๆ กันเลยจ้า
all([true, true, true]) # Result in True
all([true, true, false]) # Result in False
.
📑 ตัวอย่าง
num = [1,2,3,4,5,6,7,8]
test = all(ans % 2 != 0 for ans in num)
print(test) # result => False
.
อันนี้ใช้ตัวอย่างเดียวกันกับ Any เลย แต่จะเห็นว่า Return ค่าออกมาเป็น False เพราะมีค่าใน List ที่ไม่ได้เป็นเลขคี่ และหาร 2 ลงตัวนั่นเอง
.
เห็นไหมไม่ยากเลยย ยังไงก็ลองไปปรับใช้กับโค้ดของเพื่อน ๆ ดูน้าา 😁
💥 หรือใครอยากอ่านเต็ม ๆ คลิกลิงค์เลยจ้า >> https://www.geeksforgeeks.org/any-all-in-python/ , https://stackabuse.com/any-and-all-in-python-with-examples
.
borntoDev - 🦖 สร้างการเรียนรู้ที่ดีสำหรับสายไอทีในทุกวัน
同時也有3部Youtube影片,追蹤數超過17萬的網紅魏巍,也在其Youtube影片中提到,繼上集介紹需要用 lambda 做參數的兩個內建函式 map 跟 filter 之後,這集繼續介紹 sorted 這個內建函式。這也是需要用 lambda 做參數的函式。除了這個函式以外,還介紹了 all 跟 any 這兩個函式,以及什麼叫做 Generator Expression $$ 訂閱《...
python all any 在 魏巍 Youtube 的最佳貼文
繼上集介紹需要用 lambda 做參數的兩個內建函式 map 跟 filter 之後,這集繼續介紹 sorted 這個內建函式。這也是需要用 lambda 做參數的函式。除了這個函式以外,還介紹了 all 跟 any 這兩個函式,以及什麼叫做 Generator Expression
$$ 訂閱《魏巍》頻道吧~ https://bit.ly/2EIy6Rz
-----------------------------------------------------------------------------------------------------------
***** 訂閱魏巍頻道 ***** @@ ***** 跟我一起玩遊戲 *****
***** 還會分享各種有趣的短片** @@ ** 趕快去訂閱吧! *****,
-----------------------------------------------------------------------------------------------------------------------
#python #programming #魏巍
python all any 在 prasertcbs Youtube 的最佳貼文
ดาวน์โหลด Jupyter Notebook ที่ใช้ในคลิปได้ที่ ► http://bit.ly/2Jvzyhv
เชิญสมัครเป็นสมาชิกของช่องนี้ได้ที่ ► https://www.youtube.com/subscription_center?add_user=prasertcbs
playlist สอน Jupyter Lab ► https://www.youtube.com/playlist?list=PLoTScYm9O0GEour5CiwfSnoutg3RyA76O
playlist สอน Jupyter Notebook ► https://www.youtube.com/playlist?list=PLoTScYm9O0GErrygsfQtDtBT4CloRkiDx
playlist สอน Python สำหรับ data science ► https://www.youtube.com/playlist?list=PLoTScYm9O0GFVfRk_MmZt0vQXNIi36LUz
playlist สอน Numpy ► https://www.youtube.com/playlist?list=PLoTScYm9O0GFNEpzsCBEnkUwgAwOu_PWw
playlist สอน matplotlib ► https://www.youtube.com/playlist?list=PLoTScYm9O0GGRvUsTmO8MQUkIuM1thTCf
playlist สอน seaborn ► https://www.youtube.com/playlist?list=PLoTScYm9O0GGC9QvLlrQGvMYatTjnOUwR
playlist สอนภาษาไพธอน Python เบื้องต้น ► https://www.youtube.com/playlist?list=PLoTScYm9O0GH4YQs9t4tf2RIYolHt_YwW
playlist สอนภาษาไพธอน Python OOP ► https://www.youtube.com/playlist?list=PLoTScYm9O0GEIZzlTKPUiOqkewkWmwadW
playlist สอน Python 3 GUI ► https://www.youtube.com/playlist?list=PLoTScYm9O0GFB1Y3cCmb9aPD5xRB1T11y
playlist สอนการใช้งานโปรแกรม R: https://www.youtube.com/playlist?list=PLoTScYm9O0GGSiUGzdWbjxIkZqEO-O6qZ
playlist สอนภาษา R เบื้องต้น ► https://www.youtube.com/playlist?list=PLoTScYm9O0GF6qjrRuZFSHdnBXD2KVIC
python all any 在 Kyle Le Dot Net Youtube 的最佳解答
A bunch of friends and I traveled down to My Tho to visit our roots in the Mekong. First we ate some noodles called hu tieu. Then we tried VEGEMITE and then hated our lives. Then we went to the most famous temple in My Tho. After a bunch tour of the river, we went to a honey tasting area with lots of bees and eventually played with a python. Then we got on this boat for a water coconut canal cruise. We heard some traditional Vietnamese music called cai luong too. Then we went to Phung Island where we learned about the coconut religion called dao dua. Before that we had lunch consisting of fried gourami and grilled chicken. Finally for dinner we ate live octopus at a famous local restaurant. Great Day!
--------------------------------------------------
About Me: I'm Kyle Le and I live, travel, and eat in Vietnam and many Asian countries. I'm passionate about making videos and sharing modern Asia to the world. I've traveled everywhere in Vietnam, from Hanoi to Saigon - Far North, Central Highlands, Islands, and Deep Mekong Delta - I've visited there. In addition to 10+ countries in Asia from Indonesia to Thailand to Singapore, you'll find all of my food, tourist attractions, and daily life experiences discovering my roots in the motherland on this amazing journey right on this channel. So be sure to subscribe- there's new videos all the time and connect with me below so you don't miss any adventures.
Subscribe Now: https://goo.gl/tMnTmX
More Info: http://www.KyleLe.net
Like: Facebook: http://www.fb.com/KyleLe.net
Follow: Instagram and Snapchat @KyleLeDotNet
Support for more videos.
Patreon http://www.patreon.com/KyleLe
Buy a T shirt: http://www.kyleledotnet.spreadshirt.com
Paypal Donation: https://goo.gl/Ju3qLk
Original Music by Antti Luode.
I produce, film, and edit all videos myself, so I welcome any help Visit: http://www.kylele.net/support
to see how you can ensure more videos to come.