We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53efc2f commit 03b2cd6Copy full SHA for 03b2cd6
Employee Obj.ipynb
@@ -46,10 +46,28 @@
46
},
47
{
48
"cell_type": "code",
49
- "execution_count": null,
+ "execution_count": 8,
50
"metadata": {},
51
- "outputs": [],
52
- "source": []
+ "outputs": [
+ {
53
+ "name": "stdout",
54
+ "output_type": "stream",
55
+ "text": [
56
+ "<__main__.Employee object at 0x000001C215A66B48>\n",
57
+ "Soumyadip\n",
58
+ "Chowdhury\n",
59
+ "[email protected]\n",
60
+ "90000\n"
61
+ ]
62
+ }
63
+ ],
64
+ "source": [
65
+ "print(emp_1)\n",
66
+ "print(emp_1.first)\n",
67
+ "print(emp_1.last)\n",
68
+ "print(emp_1.email)\n",
69
+ "print(emp_1.pay )"
70
71
}
72
],
73
"metadata": {
0 commit comments