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#output Formating >>> x = 5; y = 10 >>> print('The value of x is {} and y is {}'.format(x,y)) The value of x is 5 and y is 10 >>> x = 12.3456789 >>> print('The value of x is %3.2f' %x) The value of x is 12.35 >>> print('The value of x is %3.4f' %x) The value of x is 12.3457 #Python Input >>> num = input('Enter a number: ') Enter a number: 10 >>> num '10'1.4 input-output in python