forked from remon/pythonCodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Data_Types_en.py
34 lines (19 loc) · 979 Bytes
/
Data_Types_en.py
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
#what is python
#added by @Dima
print("What is Data Types?")
print("_______________________________________________________")
print("Collections of data put together like array ")
print("________________________________________________________")
print("there are four data types in the Python ")
print("________________________________________________________")
print("""1)--List is a collection which is ordered and changeable.
Allows duplicate members.""")
print("________________________________________________________")
print("""2)--Tuple is a collection which is ordered and unchangeable
Allows duplicate members.""")
print("________________________________________________________")
print("""3)--Set is a collection which is unordered and unindexed.
No duplicate members.""")
print("________________________________________________________")
print("""4)--Dictionary is a collection which is unordered,.""")
input("press close to exit")