آموزش های که در سایت قرار داده شده است
معمولاً از دیکشنری پایتون در جاهایی استفاده میکنیم که نیاز داریم مقادیری را با استفاده از یک کلید مرتبط با هر کدام از آنها شناسایی کنیم. این مقادیر هر چیزی میتوانند باشند؛ برای مثال، رشته متنی، عدد، شئ و … . در ابتدا به این موضوع میپردازیم که دیکشنری در پایتون چیست و پس از آن یک دیکشنری ساخته و کار با دیکشنری پایتون را خواهیم آموخت. همچنین در انتها در مورد نوع کلیدها و مقادیر بیشتر صحبت کرده و چند ترفند کاربردی را با هم مرور میکنیم. We usually use the Python dictionary where we need to identify values using a key associated with each of them. These values can be anything; For example, text string, number, object and…. We will first discuss what a dictionary is in Python, and then create a dictionary and understand how to work with the Python dictionary. We will also talk about the type of keys and more and review some practical tricks together.
در پروژههای مختلف نیاز داریم متغیرها و رشتههای متنی را با هم ترکیب کنیم. به کمک فرمت کردن رشته در پایتون میتوانیم برای چاپ متغیر بین رشته متنی یک ساختار منظم ایجاد کنیم. این ساختارها به خوانایی بهتر کد کمک میکند و البته اصلاح و توسعه را بهبود میدهد. در این آموزش با ۳ روش فرمت دهی رشته متنی پایتون آشنا میشویم. format() : 1:55 In different projects we need to combine variables and text strings. By formatting a string in Python, we can create a regular structure for printing a variable between text strings. These structures contribute to better readability of the code and, of course, improve modification and development. In this tutorial, we will get acquainted with 3 methods of formatting Python text strings.