随机产生1-5之间的一个整数的代码是?( )
>>>import random
>>>random.randrange(1,6)
>>>random.randrange(1:6)
>>>random.randchoice(1,5)
>>>random.randint(1,5)