Skip to content

Commit d5a90fd

Browse files
authored
Merge pull request #17 from ohidxy/master
Minor changes in linux command and Added new block in Python3 cheat sheet
2 parents 3433992 + ff7a4e2 commit d5a90fd

2 files changed

Lines changed: 24 additions & 0 deletions

File tree

data/linux-command-line.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,9 @@
153153
}, {
154154
"definition": "USB ডিভাইস দেখা",
155155
"code": "lsusb -tv"
156+
}, {
157+
"definition": "Hard Drive ডিভাইস দেখা",
158+
"code": "lsblk"
156159
}
157160
]
158161
}

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)