CSV
Title1;Title2;Title3
one;two;three
example1;example2;example3
Prickly Piranha
Title1;Title2;Title3
one;two;three
example1;example2;example3
import csv
with open('colour.csv') as fichier_csv:
reader = csv.reader(fichier_csv, delimiter=',')
for ligne in reader:
print(ligne)
(a-b)%c in programming written as (a-b+c)%c(modular property).