Suppose from index.py with CGI, I have post file foo.fasta to display file. I want to change foo.fasta‘s file extension to be foo.aln in display file. How can I do it?
Suppose from index.py with CGI, I have post file foo.fasta to display file. I
Share
os.path.splitext(),os.rename()for example: