We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c8b376 commit 579ce35Copy full SHA for 579ce35
1 file changed
README.md
@@ -28,7 +28,7 @@ import datetime
28
ymdstr = datetime.date.today().strftime("%y-%m-%d")
29
```
30
31
-Additionally, there's no need to add the type of the variable (str) to its name.
+به علاوه، نیازی به استفاده کردن تایپ `str` برای اسم نیست.
32
33
**خوب**:
34
@@ -42,7 +42,7 @@ current_date: str = datetime.date.today().strftime("%y-%m-%d")
42
43
### از واژگان یکسان برای همان نوع متغیر استفاده کنید
44
**بد:**
45
-Here we use three different names for the same underlying entity:
+ما در اینجا از چند اسم برای یک موجود استفاده میکنیم:
46
47
```python
48
def get_user_info(): pass
0 commit comments