0

我有以下功能:

def AdjustTime(f):
    if len(f) == 1:
        return '0' + f + '00'
    elif len(f) == 2:
        return f + '00'
    elif len(f) == 3:
        return '0' + f
    elif len(f) == 4:
        return f
    else:
        while True:
            if len(f) > 0 and len(f) <= 4 and int(f[:2]) <= 23 and int(f[2:]) <= 59:
                return f
                break
            else:
                clear()
                print f,'Get this date right'
                f = raw_input('')

它一直有效,直到我得到一个正确的数字,这会导致 TypeError: 'NoneType' object is not subscriptable。如何解决这个问题?

编辑:首先,感谢括号中的提及,我在自己编码时忘记了几次,现在代码是我实际尝试的代码。

我想将一串从草稿中带入的文本放入这个函数中,if/elif 会将 1-2-3 字符串转换为我需要的 4 位数字以及我想要的方式。例如,字符串“1”将变为“0100”。但你知道的。如果用户以某种方式搞砸了,我正在使用那段时间。是的,我应该以其他方式重新组织它,例如int(f[:2]) <= 23 and int(f[2:]) <= 59在实际尝试编辑字符串之前使用。

回到正轨,如果用户搞砸了,输入让他有机会插入一个正确的字符串,这会通过一段时间。问题是,当用户输入正确的值时,这就是 aprint f显示的内容,将值视为 1234:

1234
None

现在,我还能做些什么来帮助你?

EDIT2:由于每个人都在要求完整的代码,所以你是来帮助我的,我只是认为没有必要。对此表示歉意(:

from urllib import quote
import time
from webbrowser import open
from console import clear

rgv = ['a path', 'This is an awesome reminder\nWith\nMultiple\nLines.\nThe last line will be the time\n23455']

a = rgv[1].split('\n')

reminder = quote('\n'.join(a[:(len(a)-1)]))

t = a[len(a)-1]

def AdjustTime(f):
    if len(f) == 1:
    return '0' + f + '00'
    elif len(f) == 2:
        return f + '00'
    elif len(f) == 3:
        return '0' + f
    elif len(f) == 4:
        return f
    else:
        while True:
            if len(f) > 0 and len(f) <= 4 and int(f[:2]) <= 23 and int(f[2:]) <= 59:
                return f
                break
            else:
                clear()
                print 'Get this date right'
                f = raw_input('')

mins = int(AdjustTime(t)[:2])*60 + int(AdjustTime(t)[2:])

local = (time.localtime().tm_hour*60+time.localtime().tm_min)

def findTime():
    if local < mins:
        return mins - local
    else: 
        return mins - local + 1440

due = 'due://x-callback-url/add?title=' + reminder + '&minslater=' + str(findTime()) + '&x-source=Drafts&x-success=drafts://'

open(due)
4

3 回答 3

3
def AdjustTime(f):
    f = f or ""   # in case None was passed in
    while True:
        f = f.zfill(4)
        if f.isdigit() and len(f) == 4 and int(f[:2]) <= 23 and int(f[2:]) <= 59:
            return f
        clear()
        print f, 'Get this date right'
        f = raw_input('')
于 2013-09-03T04:54:18.803 回答
0

你需要初始化 f 说,""。在while Truef is的第一次迭代中None,因此在if它正在测试的条件下None[:2]None[2:]这显然会引发错误。

编辑:嗯,我想知道你为什么不得到

object of type 'NoneType' has no len()

先报错……

于 2013-09-03T04:41:21.460 回答
0

在方法的顶部,添加以下内容:

def AdjustTime(f):
   if not f:
      return

如果您向其传递了“假”值,这将阻止该方法执行。

但是,为了做到这一点,您需要更改逻辑以raw_input在此函数的调用者中包含该行;因为上面的方法会返回,提示永远不会显示:

def AdjustTime(f):
    if not f:
       return
    if len(f) == 1:
        return '0' + f + '00'
    if len(f) == 2:
        return f + '00'
    if len(f) == 3:
        return '0' + f
    if len(f) == 4:
        return f
    if 0 > len(f) <= 4 and int(f[:2]) <= 23 and int(f[2:] <= 59:
        return f

def get_input():
    f = raw_input('')
    result = AdjustTime(f)
    while not result:
        print('{} get this date right'.format(f))
        f = raw_input('')
        result = AdjustTime(f)

@gnibbler 在评论中有一个很好的建议:

def AdjustTime(f):
   f = f or ""

f如果传入的值为falsey,这会将 的值设置为空白字符串。这种方法的好处是您的 if 循环仍将运行(因为空白字符串有长度),但您的 while 循环将失败。

于 2013-09-03T04:47:09.047 回答