WPM
100
CPM
100
Errors
0
Time
15Min
Accuracy
100%
Start Pythons code typing Practice. Python codes over functions, python type conversion typecasting, datatypes, literals, input-output and python namespace scope.Click on the area below to start typing.

S.No.Paragraph : Practice repeatedly whatever you would like most for full fifteen minutes Lessionsclick to Practice
1#Python Numbers a = 5 print(a, "is of type", type(a)) a = 2.0 print(a, "is of type", type(a)) a = 1+2j print(a, "is complex number?", isinstance(1+2j,complex)) a = [5,10,15,20,25,30,35,40] #Python List # a[2] = 15 print("a[2] = ", a[2]) # a[0:3] = [5, 10, 15] print("a[0:3] = ", a[0:3]) # a[5:] = [30, 35, 40] print("a[5:] = ", a[5:])1.2 Python Datatypes