Skip to content

Commit 25c5e13

Browse files
committed
Data types
1 parent d0f2405 commit 25c5e13

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

DataTypes/numbers.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#intergers
2+
positiveInteger=30
3+
negativeInteger=-20
4+
#float
5+
floatNumber=3.5
6+
floatNegative=-9.1
7+
#scientific numbers
8+
standanrdForm=3e4
9+
#boolean
10+
trueBoolean=True
11+
falseBoolean=False
12+
#complex numbers
13+
complexNumber1=3+10j
14+
complexNumber2=6-10j
15+
16+
print(complexNumber1*complexNumber2)

0 commit comments

Comments
 (0)