How do I put full stops (.) at the end of each line in the code below?
num = 0
for i in range(0, 3):
for j in range(0, 5):
print(num, end=",")
num = num + 1
print("\r")
Current output:
0,1,2,3,4,
5,6,7,8,9,
10,11,12,13,14,
Output I want:
0,1,2,3,4.
5,6,7,8,9.
10,11,12,13,14.
Thank you in advance for any help!