debugtalk.py 739 字节
import random
import string
import time,datetime
from helpfunc.login_func import *
from helpfunc.db_func import *
from helpfunc.header_func import *
from random import randint

def sleep(n_secs):
    time.sleep(n_secs)

def convert_to_string(value):
    return str(value)

def get_nowtime():
    return time.strftime("%Y%m%d%H%M%S",time.localtime(time.time()))

def get_second():
    curr_time = datetime.datetime.now()
    return  curr_time.second

def create_channel(num):
    channel = []
    for i in range(num+1):
        channel.append(i)
    return channel

def create_phone_number(num):
    phone_number = []
    for i in range(num):
        phone_number.append('189%08d'%i)
        # print(phone_number)
    return phone_number