下列變數名中不合法的是?(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的是?b
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!
('good good study'
,'day day up'
)
寫**在控制台列印5次you see see, one day day!
for x in
range(5
('you see see,one day day'
)
寫**列印數字 11、12、13、… 21
for x in
range(11
,22,2
(x)
寫**列印數字 11,13,15,17,…99
for x in
range(11
,100):
if x &1==
1:print
(x)
寫**列印數字:10、9、8、7、6、5
for x in
range(10
,4,-
1):print
(x)
寫**計算:1+2+3+4+…+20 的和
num =
0for x in
range(1
,21):
num += x
print
(num)
寫**計算100以內所有偶數的和
result =
0for x in
range(0
,100,2
):result += x
print
(result)
寫**統計100~200中個位數是3的數的個數
count =
0for x in
range
(103
,200,10
):count ==
1print
(count)
寫**計算2*3*4*5*...*9
的結果
num =
1for x in
range(2
,10):
num *= x
print
(num)
輸入乙個數,如果輸入的數是偶數就列印偶數
否則列印奇數
```python
num = int(input('請輸入乙個數:'))
if num & 1:
print('奇數')
else:
print('偶數')
```
統計1000以內能被3整除但是不能被5整除的數的個數。
count =
0for x in
range(1
,1000
)if x %3==
0and x %5!=
0:count +=
1print
(count)
第一周作業(零基礎)
下列變數名中不合法的是?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 新...
第一周作業(零基礎)
下列變數名中不合法的是?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 新...