1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
{
"metadata": {
"name": "",
"signature": "sha256:b27388c839c6d3c0ac3b02e957e5002e46b199832aa603d6647b0c1518ba9f3d"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"CHAPTER11 : BINARY LOGIC THEORY AND IMPLEMENTATION"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example E01 : Pg 483"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# a\n",
"N2 = '101'; # binary ordered sequence \n",
"N = int(N2,base=2) # decimal equivalent of N2\n",
"print '%s' %(\"a\")\n",
"print'%s %.f'%(\"The decimal equivqlent of 101 is\",N)\n",
"\n",
"\n",
"# b\n",
"N2 = '11011'; # binary ordered sequence \n",
"N = int(N2,base=2); # decimal equivalent of N2\n",
"print '%s' %(\"b\")\n",
"print '%s %.f' %(\"decimal equivalent of 11011 = \",N)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"a\n",
"The decimal equivqlent of 101 is 5\n",
"b\n",
"decimal equivalent of 11011 = 27\n"
]
}
],
"prompt_number": 1
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example E02 : Pg 483"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# a\n",
"N8 = '432'; # octal number\n",
"N = int(N8,base=8); # decimal representation of N8\n",
"print '%s' %(\"a\")\n",
"print '%s %.f' %(\"decimal equivalent of 432 = \",N)\n",
"\n",
"# b\n",
"N16 = 'C4F'; # hexadecimal number \n",
"N = int(N16,base=16);#hex2dec(N16); # decimal representation of N16\n",
"print '%s' %(\"b\")\n",
"print '%s %.f' %(\"decimal equivalent of C4F = \",N) "
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"a\n",
"decimal equivalent of 432 = 282\n",
"b\n",
"decimal equivalent of C4F = 3151\n"
]
}
],
"prompt_number": 2
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example E03 : Pg 488"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"a=\"247\"\n",
"b=oct(247)\n",
"print(\"The octal equivalent of 247 is\")\n",
"print(b)\n",
"dec=247\n",
"bina=bin(dec) #binary output\n",
"print(\"\\nThe Binary equivalent of 247 is \")\n",
"print(bina)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The octal equivalent of 247 is\n",
"0367\n",
"\n",
"The Binary equivalent of 247 is \n",
"0b11110111\n"
]
}
],
"prompt_number": 3
}
],
"metadata": {}
}
]
}
|