第一周作業(零基礎)

2021-10-17 08:36:11 字數 3350 閱讀 2026

下列變數名中不合法的是?(bc)

a. abc

b. npc

c. 1name

d ab_cd

下列選項中不屬於關鍵字的是?(b)

a. and

b. print # 輸出函式

c. true

d. in

下面哪個選項對應的**寫法是正確的?(c d)

a.

print

('python'

)print

('新手村'

)# 前面不該空格

b.

print

('python'

)print

('新手村'

)# 第一句後面應該加逗號隔開

c.

print

('python'

)print

('新手村'

)

d.

print

('python'

'新手村'

)

下面選項中能列印出50的是?(b)

a.

print

('100 - 50'

)# ''裡面的內容為文字字串 --> 100-50

b.

print

(100-50

)

關於引號,下面選項中使用正確的是?(d)

a.

print

('hello) # 少了反引號 --> print('hello')

b.

print

("hello')

# 雙引號和單引號不能同時使用

c.

print

(「hello」)

# 標點符號應為英文輸入法狀態下輸入

d.

print

("hello"

)

寫**在控制台列印good good study, day day up!

print

('good good study, day day up!'

)

寫**在控制台列印5次you see see, one day day!

word =

'you see see, one day day!'

# 設定乙個變數

for _ in

range(5

):# for 迴圈 下劃線不展示

print

(word)

寫**列印數字 11、12、13、… 21

for x in

range(11

,22,1

):# 邏輯 x為變數=[11,21)區間 1為步長

print

(x)

寫**列印數字 11,13,15,17,…99

for x in

range(11

,100,2

):# 邏輯 x=[11,100)區間 步長為2

print

(x)

寫**列印數字:10、9、8、7、6、5

for x in

range(10

,4,-

1):# 邏輯 x=[10,4)區間,步長為-1 -->10-1==x1;x1-1==x2;...

print

(x)

寫**計算:1+2+3+4+…+20 的和

result =

1for num in

range(1

,21):

result += num

print

(result)

# 211

寫**計算100以內所有偶數的和

num =

0# 設定第乙個偶數0

for x in

range(0

,101):

# 取出0~100之間的數

if x &1==

0:# 取出偶數

num += x # 取出的數不斷相加

print

(num)

# 2550

寫**統計100~200中個位數是3的數的個數

count =

0for num in

range

(103

,201,10

):''' [100,200]區間中最小的個位數為3的值是103,與下乙個含3個位數的數值間隔為10'''

count +=

1print

(count)

# 10

寫**計算2*3*4*5*...*9的結果

result =

1for num in

range(2

,10):

result *= num

print

(result)

# 362880

輸入乙個數,如果輸入的數是偶數就列印偶數否則列印奇數

num =

int(

input

('輸入乙個整數'))

if num &1==

0:# &1==0為偶數&1==1為奇數

print

('偶數'

)else

:print

('奇數'

)

統計1000以內能被3整除但是不能被5整除的數的個數。

# 邏輯 要麼被3整除,要麼被5整除,肯定不能同時被3*5的倍數整除

count =

0for num in

range(0

,1000):

if(num %3==

0or num %5==

0)and num %

15!=0:

count +=

1print

(count)

# 400

第一周作業(零基礎)

下列變數名中不合法的是?c a.abc b.npc c.1name d ab cd 下列選項中不屬於關鍵字的是?b a.and b.print c.true d.in 下面哪個選項對應的 寫法是正確的?c a.print python print 新手村 b.print python print 新...

第一周作業(零基礎)

下列變數名中不合法的是?c a.abc b.npc c.1name d ab cd 下列選項中不屬於關鍵字的是?b a.and b.print c.true d.in 下面哪個選項對應的 寫法是正確的?c a.print python print 新手村 b.print python print 新...

第一周作業(零基礎)

下列變數名中不合法的是?c a.abc b.npc c.1name d ab cd 下列選項中不屬於關鍵字的是?b a.and b.print c.true d.in 下面哪個選項對應的 寫法是正確的?c a.print python print 新手村 b.print python print 新...