Skip to content

Commit 9ebb768

Browse files
committed
Add container types
1 parent 353b7b6 commit 9ebb768

1 file changed

Lines changed: 22 additions & 1 deletion

File tree

data/python3-cheat-sheet.json

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"colorPref": "#ffff00",
77
"contents": [
88
{
9-
"title": "বেইস টাইপস",
9+
"title": "বেইস টাইপস (Base Types)",
1010
"items": [
1111
{
1212
"definition": "পূর্ণ সংখ্যা",
@@ -29,6 +29,27 @@
2929
"code": "bytes উদাহরন: b'toto\\xfe\\775'"
3030
}
3131
]
32+
},
33+
{
34+
"title": "কনটেইনার টাইপস (Container Types)",
35+
"items": [
36+
{
37+
"definition": "লিস্ট",
38+
"code": "list উদাহরন: [1, 2, 3], ['x', 22, -3, 2]"
39+
},
40+
{
41+
"definition": "ডিকশনারি",
42+
"code": "dict উদাহরন: {'one': 1, 'two': 2}"
43+
},
44+
{
45+
"definition": "টুপল (ইমিউটেবল বা অপরিবর্তনযোগ্য ডেটা টাইপ)",
46+
"code": "tuple উদাহরন: (1, 2, 'x',)"
47+
},
48+
{
49+
"definition": "সেট",
50+
"code": "set উদাহরন: {1, 2, 'y'}"
51+
}
52+
]
3253
}
3354
]
3455
}

0 commit comments

Comments
 (0)