5️⃣ دستورات پایه در پایتون: قسمت پنجم ◀️ یک مجموعه را باز کنید. اگر مجموعهای از مقادیر در یک لیست، تاپل و غیره دارید، پایتون به شما اجازه میدهد که مقادیر را به متغیرها استخراج کنید. به این کار باز کردن بسته بندی (unpacking) میگویند.
🟡 مثال: fruits = ["apple", "banana", "cherry"] x, y, z = fruits print(x) print(y) print(z) خروجی پایتون apple banana cherry
⬅️ متغیرهای خروجی 🟣تابع ()print اغلب برای خروجی متغیرها استفاده میشود. 🟡 مثال: x = "Python is awesome" print(x) خروجی پایتون: Python is awesome
🟣در تابع ()print شما چندین متغیر را که با کاما از هم جدا شدهاند، خروجی میدهید: 🟡 مثال: x = "Python" y = "is" z = "awesome" print(x, y, z) خروجی پایتون: Python is awesome
🟣 همچنین میتوانید از عملگر + برای خروجی چندین متغیر استفاده کنید: 🟡 مثال: x = "Python " y = "is " z = "awesome" print(x + y + z) خروجی پایتون: Python is awesome
‼️ به کاراکتر Space بعد از "Python" و "is" توجه کنید، بدون آنها نتیجه "Pythonisawesome" خواهد بود.
🟣برای اعداد، کاراکتر + به عنوان یک عملگر ریاضی عمل میکند: 🟡 مثال: x = 5 y = 10 print(x + y) خروجی پایتون: 15
🟣در تابع ()print وقتی میخواهید یک رشته و یک عدد را با عملگر + ترکیب کنید، پایتون به شما یک خطا میدهد: 🟡 مثال: x = 5 y = "John" print(x + y) خروجی پایتون: TypeError: unsupported operand type(s) for +: 'int' and 'str'
🟣 بهترین راه برای خروجی چندین متغیر در تابع ()print جدا کردن آنها با کاما است که حتی از انواع دادههای مختلف پشتیبانی میکند: 🟡 مثال: x = 5 y = "John" print(x, y) خروجی پایتون: 5 John
5️⃣ دستورات پایه در پایتون: قسمت پنجم ◀️ یک مجموعه را باز کنید. اگر مجموعهای از مقادیر در یک لیست، تاپل و غیره دارید، پایتون به شما اجازه میدهد که مقادیر را به متغیرها استخراج کنید. به این کار باز کردن بسته بندی (unpacking) میگویند.
🟡 مثال: fruits = ["apple", "banana", "cherry"] x, y, z = fruits print(x) print(y) print(z) خروجی پایتون apple banana cherry
⬅️ متغیرهای خروجی 🟣تابع ()print اغلب برای خروجی متغیرها استفاده میشود. 🟡 مثال: x = "Python is awesome" print(x) خروجی پایتون: Python is awesome
🟣در تابع ()print شما چندین متغیر را که با کاما از هم جدا شدهاند، خروجی میدهید: 🟡 مثال: x = "Python" y = "is" z = "awesome" print(x, y, z) خروجی پایتون: Python is awesome
🟣 همچنین میتوانید از عملگر + برای خروجی چندین متغیر استفاده کنید: 🟡 مثال: x = "Python " y = "is " z = "awesome" print(x + y + z) خروجی پایتون: Python is awesome
‼️ به کاراکتر Space بعد از "Python" و "is" توجه کنید، بدون آنها نتیجه "Pythonisawesome" خواهد بود.
🟣برای اعداد، کاراکتر + به عنوان یک عملگر ریاضی عمل میکند: 🟡 مثال: x = 5 y = 10 print(x + y) خروجی پایتون: 15
🟣در تابع ()print وقتی میخواهید یک رشته و یک عدد را با عملگر + ترکیب کنید، پایتون به شما یک خطا میدهد: 🟡 مثال: x = 5 y = "John" print(x + y) خروجی پایتون: TypeError: unsupported operand type(s) for +: 'int' and 'str'
🟣 بهترین راه برای خروجی چندین متغیر در تابع ()print جدا کردن آنها با کاما است که حتی از انواع دادههای مختلف پشتیبانی میکند: 🟡 مثال: x = 5 y = "John" print(x, y) خروجی پایتون: 5 John
Pavel Durov, Telegram's CEO, is known as "the Russian Mark Zuckerberg," for co-founding VKontakte, which is Russian for "in touch," a Facebook imitator that became the country's most popular social networking site. The Dow Jones Industrial Average fell 230 points, or 0.7%. Meanwhile, the S&P 500 and the Nasdaq Composite dropped 1.3% and 2.2%, respectively. All three indexes began the day with gains before selling off. Given the pro-privacy stance of the platform, it’s taken as a given that it’ll be used for a number of reasons, not all of them good. And Telegram has been attached to a fair few scandals related to terrorism, sexual exploitation and crime. Back in 2015, Vox described Telegram as “ISIS’ app of choice,” saying that the platform’s real use is the ability to use channels to distribute material to large groups at once. Telegram has acted to remove public channels affiliated with terrorism, but Pavel Durov reiterated that he had no business snooping on private conversations. The Security Service of Ukraine said in a tweet that it was able to effectively target Russian convoys near Kyiv because of messages sent to an official Telegram bot account called "STOP Russian War." Stocks dropped on Friday afternoon, as gains made earlier in the day on hopes for diplomatic progress between Russia and Ukraine turned to losses. Technology stocks were hit particularly hard by higher bond yields.
from de