line graph with red dots for particular column value python code example
Example 1: input two numbers in python in a single line
inputs = []for i in range(3): # loop 3 times inputs.append(input())
Example 2: print list in one line python
# using * operator
scores = [11, 12, 13, 14, 15, 16]
print(*scores)