- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我需要拆分一行,并将列表中的所有单词都设为小写时,首选方式是:
1.)
list = []
for word in line.split():
word = word.lower()
list.append(word)
2.)
list = []
for word in line.lower().split():
list.append(word)
对性能有影响吗?它真的有什么不同吗(除了第二个更短)。
编辑添加了缺失的 split()
。
最佳答案
也许更紧凑的东西:
>>> a = "I AM A DEVELOPER"
>>> a.lower().split()
['i', 'am', 'a', 'developer']
关于python - 哪一个更喜欢 - line.lower() 与 word.lower(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4546879/
当我需要拆分一行,并将列表中的所有单词都设为小写时,首选方式是: 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
我是一名优秀的程序员,十分优秀!