Skip to content

Commit cb688d2

Browse files
authored
Merge pull request #20 from selectiveduplicate/fix-python-grammatical-mistakes
Fix grammatical mistakes
2 parents 3f7a84a + 4919ccd commit cb688d2

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

data/python3-cheat-sheet.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@
1010
"items": [
1111
{
1212
"definition": "পূর্ণ সংখ্যা",
13-
"code": "int উদাহরন: 234, 0, -193, 0b010, 0xF3"
13+
"code": "int উদাহরণ: 234, 0, -193, 0b010, 0xF3"
1414
},
1515
{
1616
"definition": "ফ্লোটিং পয়েন্ট সংখ্যা",
17-
"code": "float উদাহরন: 9.23, 0.0, -1.7e-6"
17+
"code": "float উদাহরণ: 9.23, 0.0, -1.7e-6"
1818
},
1919
{
2020
"definition": "বুলিয়ান",
21-
"code": "bool উদাহরন: True, False"
21+
"code": "bool উদাহরণ: True, False"
2222
},
2323
{
2424
"definition": "স্ট্রিং অথবা অক্ষর",
25-
"code": "str উদাহরন: 'hello', \"world\""
25+
"code": "str উদাহরণ: 'hello', \"world\""
2626
},
2727
{
2828
"definition": "বাইটস",
29-
"code": "bytes উদাহরন: b'toto\\xfe\\775'"
29+
"code": "bytes উদাহরণ: b'toto\\xfe\\775'"
3030
}
3131
]
3232
},
@@ -35,19 +35,19 @@
3535
"items": [
3636
{
3737
"definition": "লিস্ট",
38-
"code": "list উদাহরন: [1, 2, 3], ['x', 22, -3, 2]"
38+
"code": "list উদাহরণ: [1, 2, 3], ['x', 22, -3, 2]"
3939
},
4040
{
4141
"definition": "ডিকশনারি",
42-
"code": "dict উদাহরন: {'one': 1, 'two': 2}"
42+
"code": "dict উদাহরণ: {'one': 1, 'two': 2}"
4343
},
4444
{
4545
"definition": "টুপল (ইমিউটেবল বা অপরিবর্তনযোগ্য ডেটা টাইপ)",
46-
"code": "tuple উদাহরন: (1, 2, 'x',)"
46+
"code": "tuple উদাহরণ: (1, 2, 'x',)"
4747
},
4848
{
4949
"definition": "সেট",
50-
"code": "set উদাহরন: {1, 2, 'y'}"
50+
"code": "set উদাহরণ: {1, 2, 'y'}"
5151
}
5252
]
5353
},
@@ -60,7 +60,7 @@
6060
},
6161
{
6262
"code": "y, z, r = 9.2, -7.6, 'bad'" ,
63-
"definition": "একাধিক ভ্যারিয়েবল এসাইনমেন্টঃ ডানপাশে ভ্যারিয়েবন সমূহ এবং বাম পাশে কমা দ্বারা বিভক্ত এদের ভ্যালু সমহু ক্রমান্বয়ে সজ্জিত"
63+
"definition": "একাধিক ভ্যারিয়েবল এসাইনমেন্টঃ ডানপাশে ভ্যারিয়েবল সমূহ এবং বাম পাশে কমা দ্বারা বিভক্ত এদের ভ্যালু সমূহ ক্রমান্বয়ে সজ্জিত"
6464
},
6565
{
6666
"code": "x += 3 (or x = x + 3)",

0 commit comments

Comments
 (0)