我需要检查变量的大小写,如果它是大写或小写。我们可以在Django模板中做到吗?
答案 0 :(得分:1)
使用Jinja提供的upper
测试。
{% if variable is upper %}Yes, the variable is uppercase!{% endif %}
答案 1 :(得分:0)
如果您确定该变量将是一个字符串,您可以使用isupper
字符串方法来检查字符串是否为大写。同样,islower
用于检查小写。
@agaust。感谢编辑,内置函数跳过了我的脑海。