Skip to content

Commit ff7a4e2

Browse files
committed
Add variable assignment in python3-cheat-sheet
1 parent 643f061 commit ff7a4e2

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

data/python3-cheat-sheet.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,27 @@
5050
"code": "set উদাহরন: {1, 2, 'y'}"
5151
}
5252
]
53+
},
54+
{
55+
"title": "ভ্যারিয়েবল এসাইনমেন্ট (Variable Assginment)",
56+
"items": [
57+
{
58+
"definition": "x = 1.2 + 8 + sin(0)",
59+
"code": "এখানে x হলো ভ্যারিয়েবল এবং সমান চিহ্নের ডান পাশে রয়েছে কম্পিউটেড এক্সপ্রেশন অথবা ভ্যালু"
60+
},
61+
{
62+
"definition": "y, z, r = 9.2, -7.6, 'bad'" ,
63+
"code": "একাধিক ভ্যারিয়েবল এসাইনমেন্টঃ ডানপাশে ভ্যারিয়েবন সমূহ এবং বাম পাশে কমা দ্বারা বিভক্ত এদের ভ্যালু সমহু ক্রমান্বয়ে সজ্জিত"
64+
},
65+
{
66+
"definition": "x += 3 (or x = x + 3)",
67+
"code": "Increment: ইনক্রিমেন্ট"
68+
},
69+
{
70+
"definition": "x -= 3 (or x = x + 3)",
71+
"code": "Decrement: ডিক্রিমেন্ট"
72+
}
73+
]
5374
}
5475
]
5576
}

0 commit comments

Comments
 (0)