You are on page 1of 1

Python Practice Material By Atrisol Technologies

Please Answer the below 14) x,y,z=5


questions print(x,y,z)
15) d=15
1) a=10 e=27.5
type(a) print(d+e)
2) a=’Atrisol’
id(a)
type(a)
3) a=3+9e
type(a)
4) a=True
type(a)
5) a=3.72
type(a)
6) a=[1,5,8]
type(a)
7) a={‘name’:’Atrisol’}
type(a)
8) a={2,8,45}
type(a)
9) a=(3,7.9,’ar’)
type(a)
10) a=(5)
type(a)
11) a={}
type(a)
12) a=(3,5)
type(a)
13) a,b=5,8
print(a+b)

You might also like