جلسه چهارم: کلاسها و توابع 🎯📅
آنلاین (لایو)🏠
تاریخ: ۹ شهریور 🗓️
ساعت: ۱۶:۳۵ بعدازظهر
نحوه مشاهده: پنل کاربری وبسایت(mtaAcademy.ir) 🌐
نحوه چت آنلاین: دکمه چت زیر پخش زنده در سایت 💬
لینک جایگزین کمکی 🔗
https://www.aparat.com/metaAcademy/live
@Metanix_ir · 1.2K subscribers
آکادمی فناوری و تکنولوژی ایران؛ برآمده از جمعی از نخبگان مهندسی کامپیوتر دانشگاه خوارزمی. ساخته شده برای ذهن هایی که آینده را میسازند... ⁉️پشتیبانی: @Metanix_Admin1
The short link opens the channel straight in the Telegram app — not in a browser tab.
tg.me/go/Metanix_irIs this your channel? Add @tgme as admin — and see how many people click your links. Get the stats →
Channel created September 3, 2021per Telegram
We have been tracking it since August 18, 2026
In all that time the channel has changed neither its name, nor its @username, nor its avatar.
We show only what we have seen ourselves.

def square(x):
return x ** 2
square = lambda x: x ** 2
print(square(5))
lambda arguments: expression
numbers = [5, 2, 9, 1, 7]
numbers.sort(key=lambda x: x)
print(numbers)
[1, 2, 5, 7, 9]
users = [
{"name": "Ali", "age": 25},
{"name": "Sara", "age": 19},
{"name": "Reza", "age": 22}
]
users.sort(key=lambda user: user["age"])