學習python的第二天

2021-09-26 05:24:46 字數 2373 閱讀 7896

for x in

range(1

,10):

for y in

range(1

,x+1):

print

('%d*%d=%d'

%(x,y,x*y)

,end=

'\t'

)print

()

執行結果:

1*1

=12*

1=22

*2=4

3*1=

33*2

=63*

3=94

*1=4

4*2=

84*3

=124*

4=165

*1=5

5*2=

105*3

=155*

4=205

*5=25

6*1=

66*2

=126*

3=186

*4=24

6*5=

306*6

=367*

1=77

*2=14

7*3=

217*4

=287*

5=357

*6=42

7*7=

498*1

=88*

2=168

*3=24

8*4=

328*5

=408*

6=488

*7=56

8*8=

649*1

=99*

2=189

*3=27

9*4=

369*5

=459*

6=549

*7=63

9*8=

729*9

=81

import random

email=

'[email protected]'

password=

'1234567'

count=

0email=

input

('賬號')if

'@163.com'

notin email:

print

('賬號格式不正確,請重新輸入'

)else

:for i in

range(4

):email=

input

('賬號'

) password=

input

('密碼'

)if email==email and password==password:

print

('登陸成功'

)break

else

:print

('賬號或密碼錯誤,請重新輸入'

) count+=

1 yanzhengma=random.randint(

1000

,9999

)print

('yanzhengma'

) num=

int(

input

('請輸入驗證碼'))

if num == yanzhengma:

print

('驗證成功'

)else

:print

('驗證失敗,請重新輸入'

)if count==4:

print

('賬號已鎖定,請持身份件到狗尾巴胡同辦理解鎖'

)

執行結果:

=r'c:\users\lenovo\music\薛之謙 - 你還要我怎樣.***'

pygame.mixer.init(

)print

("新建歌單5"

)track=pygame.mixer.music.load(

file

)pygame.mixer.music.play(

)time.sleep(20)

pygame.mixer.music.stop(

)

def

func_name()

: 執行體

return ***

func_name(

)

Python學習第二天

1 python包含6種內建的序列,列表 元組 字串 unicode字串 buffer物件和xrange物件 2 列表和元組的主要區別在於,列表可以修改,元組則不能。在一般情況下,幾乎所有的情況下列表都可以替代元組 3 字串就是乙個由字元組成的序列,可以通過索引獲取序列中的元素,使用負數索引時,py...

python學習第二天

if 條件 滿足條件幹什麼1 滿足條件幹什麼2 滿足條件幹什麼3 else 不滿足條件幹什麼1 不滿足條件幹什麼2 或者是 if 條件1 x elif 條件2 x elif 條件3 x else x產生隨機數 import random random.randint 1,3 只在1,2,3中產生隨機...

學習Python 第二天

今天我們學習了迴圈和列表,在python中有兩種迴圈分別是for迴圈和while迴圈。for迴圈寫法 for 變數 in range 起點,終點,步長 迴圈體例題 列印實心菱形 for i in range 4,5 for j in range abs i print end for j in ra...