返回的字典值是'None'python

时间:2011-03-28 16:08:46

标签: python dictionary return-value

我在一个文件中有一个函数,我在一个单独的脚本中调用(如下所示)。直接从函数打印正常工作,但是当我尝试将值返回到脚本时,它会发送“无”。

任何帮助将不胜感激。 感谢

脚本:

import modules.functions as f

restype = 'THR'
atomtype = 'CA'

print f.AtomType(restype,atomtype)

function :(这是返回值的函数的一部分)

def AtomType(resName,atomType):
    def threonine():
        print 'well im here'
        atoms = {'N' : 1,
                 'CA': 6,
                 'C' : 8,
                 'O' : 2,
                 'CB': 6,
                 'OG1': 1,
                 'CG2': 4, 
                 }    

            print atoms[atomType]
            return atoms[atomType]

    residues = {'ALA' : hydrophobic,
                'ARG' : arginine,
                'ASN' : asparagine,
                'ASP' : aspartate,
                'CYS' : cysteine,
                'GLN' : glutamine,
                'GLU' : glutamate,
                'GLY' : hydrophobic,
                'HIS' : histidine,
                'ILE' : hydrophobic,
                'LEU' : hydrophobic,
                'LYS' : lysine,
                'MET' : methionine,
                'PHE' : phenylalanine,
                'PRO' : proline,
                'SER' : serine,
                'THR' : threonine,
                'TRP' : tryptophan,
                'TYR' : tyrosine,
                'VAL' : hydrophobic,
                }

    residues[resName]()

我得到的输出是:

well im here
6
None

编辑:添加整个功能

1 个答案:

答案 0 :(得分:2)

以下是猜测:AtomType调用threonine,但不返回其返回值。