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 a205f05 commit a5405ecCopy full SHA for a5405ec
Basic/quadratic.py
@@ -1,3 +1,4 @@
1
+# * Written By Codezila.org at 17-03-2020 10:08AM (IST)
2
# import complex math module
3
import cmath
4
a = float(input('Enter a: '))
@@ -10,4 +11,5 @@
10
11
# find two solutions
12
sol1 = (-b-cmath.sqrt(d))/(2*a)
13
sol2 = (-b+cmath.sqrt(d))/(2*a)
-print('The solution are {0} and {1}'.format(sol1,sol2))
14
+print('The solution are {0} and {1}'.format(sol1,sol2))
15
+print('\n\tCode By codezila.org :)\n\tJoin Us On : <github.com/codezila-org>\n\tFor More Mail Us : <contact@codezila.org>')
0 commit comments