草庐IT

dds-format

全部标签

python - 值错误 : time data '%Y-%m-%d %H:%M:%S' does not match format '2012-11-14 14:32:30'

这个问题不太可能帮助任何future的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visitthehelpcenter.关闭10年前。我正在尝试通过datetime.datetime.strptime将字符串'2012-11-1414:32:30'转换为datetime.datetime对象方法使用格式字符串'%Y-%m-%d%H:%M:%S'。这样做,我得到一个错误:ValueError:timedata'%Y-%m-%d%H:%M:%S'doesnotmatchformat'201

python - 如何将 tuple1 if ... else tuple2 传递给 str.format?

简单来说,为什么会出现以下错误?>>>yes=True>>>'no[{0}]yes[{1}]'.format(("","x")ifyeselse("x",""))Traceback(mostrecentcalllast):File"",line1,inIndexError:tupleindexoutofrange我使用的是python2.6。 最佳答案 ☞索引选项:在格式字符串中访问参数项时,应该使用索引来调用值:yes=Trueprint'no[{0[0]}]yes[{0[1]}]'.format(("","x")ifyesels

python - psycopg2 类型错误 : not all arguments converted during string formatting

我正在尝试执行一个简单的查询,但无论我如何传递参数都会出现此错误。这是查询(我正在使用Trac数据库对象连接到数据库):cursor.execute("""SELECTnameFROM"%s".customerWHEREfirm_id='%s'"""%(schema,each['id']))schema和each['id']都是简单的字符串print("""SELECTnameFROM"%s".customerWHEREfirm_id='%s'"""%(schema,each['id']))结果:SELECTnameFROM"Planing".customerWHEREfirm_id=

python - py.test : format failed assert AND print custom message

py.testassertdocs说...ifyouspecifyamessagewiththeassertionlikethis:asserta%2==0,"valuewasodd,shouldbeeven"thennoassertionintrospectiontakesplacesatallandthemessagewillbesimplyshowninthetraceback.Python的内置unittest模块也执行此操作,除非您的TestCase设置longMessage=True.拥有漂亮的断言格式对测试开发人员友好,而自定义消息对业务需求/人性化更友好。当您不在测试上

python - 错误 : Unsupported format, 或损坏的文件:预期的 BOF 记录

我正在尝试打开一个xlsx文件并打印其中的内容。我一直遇到这个错误:importxlrdbook=xlrd.open_workbook("file.xlsx")print"Thenumberofworksheetsis",book.nsheetsprint"Worksheetname(s):",book.sheet_names()printsh=book.sheet_by_index(0)printsh.name,sh.nrows,sh.ncolsprintprint"CellD30is",sh.cell_value(rowx=29,colx=3)printforrxinrange(5

python - 使用 .format() 方法在 Python 3.3 中格式化要对齐的文本

我是Python的新手,正在尝试处理一些示例脚本。我正在做一个简单的收银机类型的事情,但我想证明或右对齐输出,使其看起来像这样:subTotal=24.95tax=subTotal*0.0725total=subTotal+taxpaid=30change=paid-totalprint("Thesubtotalwas:$",subTotal)print("Thetaxwas:$",tax)print("Thetotalwas:$",total)print("Thecustomerpaid:$",paid)print("Changedue:$",change)我知道我可以用更少的打印语

python - 属性错误 : 'NoneType' object has no attribute 'format'

print("HelloWorld")print("{}World").format(Hello)我正在开发我的第一个“HelloWorld”程序,我可以通过使用print函数和一个简单的字符串文本来让它工作,但是当我尝试使用.format时,它给出了我的错误:AttributeError:'NoneType'objecthasnoattribute'format'这是说我需要为.format初始化一个变量还是我遗漏了什么? 最佳答案 你的括号错了print("HelloWorld")print("{}World".format('

python - 惯用的 Python 日志记录 : format string + args list vs. 内联字符串格式 - 哪个是首选?

使用格式字符串+args列表调用日志记录函数与格式化内联是否有利?我看过(并写过)使用内联字符串格式的日志记录代码:logging.warn("%s%s%s"%(arg1,arg2,arg3))但我认为它更好(性能方面,更惯用)使用:logging.warn("%s%s%s",arg1,arg2,arg3)因为第二种形式在调用日志函数之前避免了字符串格式化操作。如果当前日志记录级别会过滤掉日志消息,则无需格式化,从而减少计算时间和内存分配。我是在正确的轨道上,还是错过了什么? 最佳答案 恕我直言,对于很可能会显示的消息,例如给err

python 结构。错误: 'i' format requires -2147483648 <= number <= 2147483647

问题我愿意使用多处理模块(multiprocessing.Pool.starmap())进行特征工程。但是,它给出如下错误消息。我猜这个错误消息是关于输入的大小(2147483647=2^31−1?),因为相同的代码对于输入数据帧的分数(frac=0.05)运行顺利(train_scala,测试,TS).我将数据框的类型转换为尽可能小,但它并没有变得更好。anaconda版本为4.3.30,Python版本为3.6(64位)。并且系统的内存大小超过128GB,超过20个核心。您想提出任何建议或解决方案来克服这个问题吗?如果这个问题是由多处理模块的大数据引起的,我应该使用多少小数据来利用

Python:使用 string.format() 将单词大写

是否可以使用字符串格式将单词大写?例如,"{user}didsuchandsuch.".format(user="foobar")应该返回“Foobar做了这样那样的事情。”请注意,我很清楚.capitalize();然而,这是我正在使用的(非常简化的)代码:printme=random.choice(["On{date},{user}didla-dee-dah.","{user}didla-dee-dahon{date}."])output=printme.format(user=x,date=y)如您所见,仅在.format()中将user定义为x.capitalize()是行不通