Skip to content

Commit b20f5f7

Browse files
Created using Colaboratory
1 parent 0051693 commit b20f5f7

File tree

1 file changed

+343
-0
lines changed

1 file changed

+343
-0
lines changed

Practice_Collabortaion.ipynb

Lines changed: 343 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,343 @@
1+
{
2+
"nbformat": 4,
3+
"nbformat_minor": 0,
4+
"metadata": {
5+
"colab": {
6+
"private_outputs": true,
7+
"provenance": [],
8+
"authorship_tag": "ABX9TyMSdyvqcKPJDfWVdYFOuHDh",
9+
"include_colab_link": true
10+
},
11+
"kernelspec": {
12+
"name": "python3",
13+
"display_name": "Python 3"
14+
},
15+
"language_info": {
16+
"name": "python"
17+
}
18+
},
19+
"cells": [
20+
{
21+
"cell_type": "markdown",
22+
"metadata": {
23+
"id": "view-in-github",
24+
"colab_type": "text"
25+
},
26+
"source": [
27+
"<a href=\"https://colab.research.google.com/github/DakshCodess/elements-conversion/blob/main/Practice_Collabortaion.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
28+
]
29+
},
30+
{
31+
"cell_type": "code",
32+
"execution_count": null,
33+
"metadata": {
34+
"id": "cRC3zQrSUK4R"
35+
},
36+
"outputs": [],
37+
"source": [
38+
"a='10'\n",
39+
"print((a), type(a))\n",
40+
"\n",
41+
"b=int(a)\n",
42+
"print((b), type(b))"
43+
]
44+
},
45+
{
46+
"cell_type": "code",
47+
"source": [
48+
"a=10.5\n",
49+
"print((a), type(a))\n",
50+
"\n",
51+
"b=int(10.5)\n",
52+
"print((b), type(b))"
53+
],
54+
"metadata": {
55+
"id": "BWlh7yVfUdqk"
56+
},
57+
"execution_count": null,
58+
"outputs": []
59+
},
60+
{
61+
"cell_type": "code",
62+
"source": [
63+
"a=False\n",
64+
"print((a), type(a))\n",
65+
"\n",
66+
"b=int(a)\n",
67+
"print((b), type(b))"
68+
],
69+
"metadata": {
70+
"id": "Vy2quM3GVWgf"
71+
},
72+
"execution_count": null,
73+
"outputs": []
74+
},
75+
{
76+
"cell_type": "code",
77+
"source": [],
78+
"metadata": {
79+
"id": "bwwJnTUCVWsX"
80+
},
81+
"execution_count": null,
82+
"outputs": []
83+
},
84+
{
85+
"cell_type": "code",
86+
"execution_count": null,
87+
"metadata": {
88+
"id": "DYnabzJKWN9S"
89+
},
90+
"outputs": [],
91+
"source": [
92+
"a=10\n",
93+
"print((a), type(a))\n",
94+
"\n",
95+
"b=str(a)\n",
96+
"print((b), type(b))"
97+
]
98+
},
99+
{
100+
"cell_type": "code",
101+
"source": [],
102+
"metadata": {
103+
"id": "dKOJ4z0WVWxq"
104+
},
105+
"execution_count": null,
106+
"outputs": []
107+
},
108+
{
109+
"cell_type": "code",
110+
"execution_count": null,
111+
"metadata": {
112+
"id": "jweXxIgbWYgE"
113+
},
114+
"outputs": [],
115+
"source": [
116+
"a=10.5\n",
117+
"print((a), type(a))\n",
118+
"\n",
119+
"b=str(a)\n",
120+
"print((b), type(b))"
121+
]
122+
},
123+
{
124+
"cell_type": "code",
125+
"source": [],
126+
"metadata": {
127+
"id": "AHh34TPLVW0A"
128+
},
129+
"execution_count": null,
130+
"outputs": []
131+
},
132+
{
133+
"cell_type": "code",
134+
"execution_count": null,
135+
"metadata": {
136+
"id": "3XgKNMEhWfHQ"
137+
},
138+
"outputs": [],
139+
"source": [
140+
"a=False\n",
141+
"print((a), type(a))\n",
142+
"\n",
143+
"b=str(a)\n",
144+
"print((b), type(b))"
145+
]
146+
},
147+
{
148+
"cell_type": "code",
149+
"execution_count": null,
150+
"metadata": {
151+
"id": "XDFsy_OpWeFT"
152+
},
153+
"outputs": [],
154+
"source": [
155+
"a=10\n",
156+
"print((a), type(a))\n",
157+
"\n",
158+
"b=bool(a)\n",
159+
"print((b), type(b))"
160+
]
161+
},
162+
{
163+
"cell_type": "code",
164+
"source": [],
165+
"metadata": {
166+
"id": "_mVhwyrQWrrO"
167+
},
168+
"execution_count": null,
169+
"outputs": []
170+
},
171+
{
172+
"cell_type": "code",
173+
"execution_count": null,
174+
"metadata": {
175+
"id": "eNnE4Jx0WspU"
176+
},
177+
"outputs": [],
178+
"source": [
179+
"a='10'\n",
180+
"print((a), type(a))\n",
181+
"\n",
182+
"b=bool(a)\n",
183+
"print((b), type(b))"
184+
]
185+
},
186+
{
187+
"cell_type": "code",
188+
"source": [],
189+
"metadata": {
190+
"id": "bPkALb92WrtX"
191+
},
192+
"execution_count": null,
193+
"outputs": []
194+
},
195+
{
196+
"cell_type": "code",
197+
"execution_count": null,
198+
"metadata": {
199+
"id": "KSir3E0yWwMl"
200+
},
201+
"outputs": [],
202+
"source": [
203+
"a=10.4\n",
204+
"print((a), type(a))\n",
205+
"\n",
206+
"b=bool(a)\n",
207+
"print((b), type(b))"
208+
]
209+
},
210+
{
211+
"cell_type": "code",
212+
"source": [],
213+
"metadata": {
214+
"id": "ZqtrJwrlWr7P"
215+
},
216+
"execution_count": null,
217+
"outputs": []
218+
},
219+
{
220+
"cell_type": "code",
221+
"execution_count": null,
222+
"metadata": {
223+
"id": "qAeqQK_dW1k1"
224+
},
225+
"outputs": [],
226+
"source": [
227+
"a=0\n",
228+
"print((a), type(a))\n",
229+
"\n",
230+
"b=bool(a)\n",
231+
"print((b), type(b))"
232+
]
233+
},
234+
{
235+
"cell_type": "code",
236+
"source": [],
237+
"metadata": {
238+
"id": "hGNlAkv8W-QT"
239+
},
240+
"execution_count": null,
241+
"outputs": []
242+
},
243+
{
244+
"cell_type": "code",
245+
"execution_count": null,
246+
"metadata": {
247+
"id": "OxGNI71vW_R3"
248+
},
249+
"outputs": [],
250+
"source": [
251+
"a=10\n",
252+
"print((a), type(a))\n",
253+
"\n",
254+
"b=float(a)\n",
255+
"print((b), type(b))"
256+
]
257+
},
258+
{
259+
"cell_type": "code",
260+
"source": [],
261+
"metadata": {
262+
"id": "AhLfmeuLW-SY"
263+
},
264+
"execution_count": null,
265+
"outputs": []
266+
},
267+
{
268+
"cell_type": "code",
269+
"execution_count": null,
270+
"metadata": {
271+
"id": "_HCbaHltXDAJ"
272+
},
273+
"outputs": [],
274+
"source": [
275+
"a='10'\n",
276+
"print((a), type(a))\n",
277+
"\n",
278+
"b=float(a)\n",
279+
"print((b), type(b))"
280+
]
281+
},
282+
{
283+
"cell_type": "code",
284+
"source": [],
285+
"metadata": {
286+
"id": "WFo6r0EgW-Ud"
287+
},
288+
"execution_count": null,
289+
"outputs": []
290+
},
291+
{
292+
"cell_type": "code",
293+
"execution_count": null,
294+
"metadata": {
295+
"id": "a99fAbQmXGDf"
296+
},
297+
"outputs": [],
298+
"source": [
299+
"a=True\n",
300+
"print((a), type(a))\n",
301+
"\n",
302+
"b=float(a)\n",
303+
"print((b), type(b))"
304+
]
305+
},
306+
{
307+
"cell_type": "code",
308+
"source": [],
309+
"metadata": {
310+
"id": "7ifFeKoJW-Wt"
311+
},
312+
"execution_count": null,
313+
"outputs": []
314+
},
315+
{
316+
"cell_type": "code",
317+
"source": [],
318+
"metadata": {
319+
"id": "U4JgsBKxW-ZA"
320+
},
321+
"execution_count": null,
322+
"outputs": []
323+
},
324+
{
325+
"cell_type": "code",
326+
"source": [],
327+
"metadata": {
328+
"id": "_T3R3PrkW-bK"
329+
},
330+
"execution_count": null,
331+
"outputs": []
332+
},
333+
{
334+
"cell_type": "code",
335+
"source": [],
336+
"metadata": {
337+
"id": "x4ootAO-W-de"
338+
},
339+
"execution_count": null,
340+
"outputs": []
341+
}
342+
]
343+
}

0 commit comments

Comments
 (0)