Consider the following code; I want to print the array Ptimes 3 spaces from the beginning of console screen. I have tried
print " %s" %(Ptimes)
when I use this form nothing printed it says that there is error "all arguements covered due too string formatting.
the original worked code is:
PN = input(" Enter each process time following by its arrival time separated by comma: ")
Ptimes = PN[::2]
Atimes = PN[1::2]
print Ptimes
print Atimes