第一次用print时,输出的结果前面总会有空格,后来发现原来是print函数的问题:

原函数:print ("r","\t","g")   output: r空格\t空格g;

将函数改成:print ("r","g",sep="\t") output: r\tg 这是想到的结果。