下列變數名中不合法的是?( 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.
print
('python'
)print
('新手村'
)
d.
print
('python'
'新手村'
)
下面選項中能列印出50的是?a
a.
print
('100 - 50'
)
b.
print
(100-50
)
關於引號,下面選項中使用正確的是?d
a.
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!
for _ in
range(5
):print
('you see see, one day day!'
)
寫**列印數字 11、12、13、… 21
for xk in
range(11
,22):
print
(xk)
寫**列印數字 11,13,15,17,…99
for ** in
range(11
,100,2
):print
(**)
寫**列印數字:10、9、8、7、6、5
for xk1 in
range(10
,4,-
1):print
(xk1)
寫**計算:1+2+3+4+…+20 的和
num =
0for a in
range(1
,21):
num += a
print
(num)
寫**計算100以內所有偶數的和
num1 =
0for b in
range(0
,100,2
):num1 += b
print
(num1)
寫**統計100~200中個位數是3的數的個數
num2 =
0for c in
range
(100
,201):
if c %
10==3:
num2 +=
1print
(num2)
寫**計算2*3*4*5*...*9
的結果
num3 =
1for d in
range(2
,10):
num3 *= d
print
(num3)
輸入乙個數,如果輸入的數是偶數就列印偶數
否則列印奇數
num4 =
int(
input
('請輸入乙個數:'))
if num4 &1:
print
('奇數'
)else
:print
('偶數'
)
統計1000以內能被3整除但是不能被5整除的數的個數。
num4 =
0for e in
range
(1000):
if e %3==
0and e %5!=
0:num4 +=
1print
(num4)
第一周作業(零基礎)
下列變數名中不合法的是?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 ...
第一周作業(零基礎)
下列變數名中不合法的是?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 新...