Bo> infile_base = '''/home/username/Figure3a''' Bo> but later on considered it superfluous.Bo> I will use triple quotes for now. What is the semantics of triple quotes?
file = '''some string with ' or ''. ''' or file = """ some string with ' or ". """ So when we have the risk of ' or " in a string, triple quotes in python can handle it. Bo