『壹』 python 如何判斷字元串是否只有小寫字母或數字

import re

s='12345abc'
if re.match('^[0-9a-z]+$',s):
print('符合要求')
else:
print('不符合要求')

『貳』 python區分大小寫嗎

python中是區分大小寫的,不管是變數、函數、還是類,都要嚴格的區分大小寫。 例如,page和Page是兩個不同的變數,name和Name也是完全不同的兩個變數。

『叄』 python如何用if 語句判斷字元時如何不區分大小寫

python
while循環語句
python
編程中
while
語句用於循環執行程序,即在某條件下,循環執行某段程序,以處理需要重復處理的相同任務。其基本形式為:
while
判斷條件:
執行語句……
執行語句可以是單個語句或語句塊。判斷條件可以是任何錶達式,任何非零、或非空(null)的值均為true。
當判斷條件假false時,循環結束。
實例:
#!/usr/bin/python
count
=
0
while
(count
<
9):
print
'the
count
is:',
count
count
=
count
+
1
print
"good
bye!"
以上代碼執行輸出結果:
the
count
is:
0
the
count
is:
1
the
count
is:
2
the
count
is:
3
the
count
is:
4
the
count
is:
5
the
count
is:
6
the
count
is:
7
the
count
is:
8
good
bye!
while
語句時還有另外兩個重要的命令
continue,break
來跳過循環,continue
用於跳過該次循環,break
則是用於退出循環,此外"判斷條件"還可以是個常值,表示循環必定成立,具體用法如下:
#
continue

break
用法
i
=
1
while
i
<
10:
i
+=
1
if
i%2
>
0:
#
非雙數時跳過輸出
continue
print
i
#
輸出雙數2、4、6、8、10
i
=
1
while
1:
#
循環條件為1必定成立
print
i
#
輸出1~10
i
+=
1
if
i
>
10:
#
當i大於10時跳出循環
break
無限循環
如果條件判斷語句永遠為
true,循環將會無限的執行下去,如下實例:
#coding=utf-8
#!/usr/bin/python
var
=
1
while
var
==
1
:
#
該條件永遠為true,循環將無限執行下去
num
=
raw_input("enter
a
number
:")
print
"you
entered:
",
num
print
"good
bye!"
以上實例輸出結果:
enter
a
number
:20
you
entered:
20
enter
a
number
:29
you
entered:
29
enter
a
number
:3
you
entered:
3
enter
a
number
between
:traceback
(most
recent
call
last):
file
"test.py",
line
5,
in
num
=
raw_input("enter
a
number
:")
keyboardinterrupt
注意:以上的無限循環你可以使用
ctrl+c
來中斷循環。
循環使用
else
語句

python
中,for

else
表示這樣的意思,for
中的語句和普通的沒有區別,else
中的語句會在循環正常執行完(即
for
不是通過
break
跳出而中斷的)的情況下執行,while

else
也是一樣。
#!/usr/bin/python
count
=
0
while
count
<
5:
print
count,
"
is
less
than
5"
count
=
count
+
1
else:
print
count,
"
is
not
less
than
5"
以上實例輸出結果為:
0
is
less
than
5
1
is
less
than
5
2
is
less
than
5
3
is
less
than
5
4
is
less
than
5
5
is
not
less
than
5
簡單語句組
類似if語句的語法,如果你的while循環體中只有一條語句,你可以將該語句與while寫在同一行中,
如下所示:
#!/usr/bin/python
flag
=
1
while
(flag):
print
'given
flag
is
really
true!'
print
"good
bye!"
注意:以上的無限循環你可以使用
ctrl+c
來中斷循環。

『肆』 用python 比較兩個strings 是否相同, 忽略大小寫程序怎麼寫。。

defastrcmp(str1,str2):
returnstr1.lower()==str2.lower()