Python Lire le fichier VCF ligne par ligne

with open('example.vcf', mode='r') as vcf:
    print(vcf.read())
Clumsy Capuchin