1+ {
2+ "id" : " python3-cheat-sheet" ,
3+ "title" : " পাইথন ৩ চিটশিট" ,
4+ "slug" : " python3-cheat-sheet" ,
5+ "description" : " পাইথন ৩ প্রোগ্রামিং এর চিটশিট" ,
6+ "colorPref" : " #ffff00" ,
7+ "contents" : [
8+ {
9+ "title" : " বেইস টাইপস (Base Types)" ,
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+ "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+ ]
53+ }
54+ ]
55+ }
0 commit comments