- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在 Python 中,字符串有一个方法 lower()
:
>>> dir('A')
[... 'ljust', 'lower', 'lstrip', ...]
但是,当尝试 '{0.lower()}'.format('A')
时,响应状态为:
>>> '{0.lower()}'.format('A')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'str' object has no attribute 'lower()'
有人能帮我理解为什么上面的行在这种情况下抛出 AttributeError 吗?这似乎不应该是一个 AttributeError,尽管我一定是弄错了。非常欢迎任何有助于理解这一点的帮助!
编辑:我知道我不能在格式调用中调用 lower() 方法(尽管如果可能的话它会很整洁);我的问题是为什么这样做会引发 AttributeError。在这种情况下,此错误似乎具有误导性。
最佳答案
您不能从格式规范中调用方法。格式说明符内的点符号是一种查找属性名称并呈现其值的方法,而不是调用函数。
0.lower()
尝试在字符串上查找名为“lower()”的 literally 属性 - 相当于 getattr(some_string, '降低()')
。您需要在格式化之前调用该方法。
>>> '{0.lower()}'.format('A')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'str' object has no attribute 'lower()'
>>> '{0}'.format('A'.lower())
'a'
关于Python: '{0.lower()}' .format ('A' ) 产生 'str' 对象没有属性 'lower()',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55442532/
当我需要拆分一行,并将列表中的所有单词都设为小写时,首选方式是: 1.) list = [] for word in line.split(): word = word
看看这个答案:Case Insensitive Flask-SQLAlchemy Query 为什么使用 SQLAlchemy 的 func.lower(mystring) 而不是 python 的原
我对 Python 中的内置方法感到困惑。例如,什么是 some_string.lower() 和 str.lower(some_string) 它们有何不同? 最佳答案 str是Python中所有字
print("Hello and welcome to your address book this program uses surnames or D.O.B to find people in
在 Python 中,字符串有一个方法 lower(): >>> dir('A') [... 'ljust', 'lower', 'lstrip', ...] 但是,当尝试 '{0.lower()}'
#include #include #include int main(void) { char input[50]; char i; int j = 0; pr
list-style-type: lower-latin 和 list-style-type: lower-alpha 都会生成如下列表: a. item1 b. item2 c. item3 ...
我目前正在学习 python 并在模块中做练习。我之前已经学习过如何删除字符串中的任何大小写字母,这样用户以后使用它会更容易。但似乎当我将“XXX.lower() ”方法应用于我的代码时,它不起作用。
这是代码; names = ('laia') good = ('good', 'great', 'beautiful') name = raw_input ("What's your name?").
这个问题在这里已经有了答案: Why doesn't calling a string method (such as .replace or .strip) modify (mutate) the
我有一个消除所有非字母字符的正则表达式 def genLetters(string): regex = re.compile('[^a-zA-Z]') newString = regex.su
我有一个名为“Earthquake”的类,它有一个字符串形式的位置,以及一些对这个问题不重要的其他部分(我不认为)。我编写了一个函数(filter_by_place),它迭代我传递给它的地震列表,并在
我在将带有变音符号的大写字母转换为小写字母时遇到问题。 print("ÄÖÜAOU".lower()) A、O 和 U 得到正确转换,但 Ä、Ö 和 Ü 保持大写。有什么想法吗? 第一个问题已通过 .
前言 今天我们总结的函数也比较简单,函数的作用的将所给字符串的中的大写字母转换成小写字母,这种操作往往出现在比较操作之前,比如验证码通常都是不区分大小写的,接下来我们一起看一下函数的用法。 内容
题目地址:https://leetcode.com/problems/to-lower-case/description/ 题目描述: Implement function ToLowerCase
这是我的查询 SELECT * FROM `music` where lower(music.name) = "hello" 我怎样才能用django发送这个查询 我试过了,但它没有在查询中添加 lo
我最近使用 ARM 模板将多个资源部署到 Azure 中。在部署存储帐户时,我遇到了一个问题,这是由于 Azure 提出的一些限制,例如 存储帐户名称不应包含大写字母 其最大长度应为 24。 我希望用
我正在尝试使用 jquery 向下滚动到 #lower div,但由于某种原因它不起作用。我做错了什么? $(function() { $('html, body').animate({
假设我有这样的代码: def c = Account.createCriteria() def results = c { between("balance", 500, 1000)
我在 sqlite 查询中遇到以下异常: The expression contains undefined function call lower() 我在 VS2012 中有一个非常简单的 SQL
我是一名优秀的程序员,十分优秀!