#/usr/bin/python#coding=utf-8
import crypt #导入crypt模块import timesalt = '$6$Ndpwv8KI$'word = 'test'print crypt.crypt(word,salt)