please let me know what is the issue with the below code. It is not showing result but the same code is showing result in vscode
from Bio import SeqIO
import os, glob
folder_path = 'D:/MAJU/Sem3/Thesis-I/DataSet/536_stentrophomonas_maltophilia-Copy2'
fasta_paths = glob.glob(os.path.join(folder_path, '*.fasta'))
for fasta_path in fasta_paths:
print(fasta_path)
for seq_record in SeqIO.parse(fasta_path, "fasta"):
print(seq_record.id)
print(seq_record.seq)