Skip to content

Commit 353b7b6

Browse files
committed
Add python3-cheat-sheet: base types
1 parent cacb587 commit 353b7b6

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

data/python3-cheat-sheet.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"id": "python3-cheat-sheet",
3+
"title": "পাইথন ৩ চিটশিট",
4+
"slug": "python3-cheat-sheet",
5+
"description": "পাইথন ৩ প্রোগ্রামিং এর চিটশিট",
6+
"colorPref": "#ffff00",
7+
"contents": [
8+
{
9+
"title": "বেইস টাইপস",
10+
"items": [
11+
{
12+
"definition": "পূর্ণ সংখ্যা",
13+
"code": "int উদাহরন: 234, 0, -193, 0b010, 0xF3"
14+
},
15+
{
16+
"definition": "ফ্লোটিং পয়েন্ট সংখ্যা",
17+
"code": "float উদাহরন: 9.23, 0.0, -1.7e-6"
18+
},
19+
{
20+
"definition": "বুলিয়ান",
21+
"code": "bool উদাহরন: True, False"
22+
},
23+
{
24+
"definition": "স্ট্রিং অথবা অক্ষর",
25+
"code": "str উদাহরন: 'hello', \"world\""
26+
},
27+
{
28+
"definition": "বাইটস",
29+
"code": "bytes উদাহরন: b'toto\\xfe\\775'"
30+
}
31+
]
32+
}
33+
]
34+
}

0 commit comments

Comments
 (0)