1. 判斷下列邏輯語句的True,False.
1)1 > 1 or 3 < 4 or 4 > 5 and 2 > 1 and 9 > 8 or 7 < 6
2)not 2 > 1 and 3 < 4 or 4 > 5 and 2 > 1 and 9 > 8 or 7 < 6
2. 求出下列邏輯語句的值。
1),8 or 3 and 4 or 2 and 0 or 9 and 7
2),0 or 2 and 3 and 4 or 6 and 0 or 3
3. 下列結果是什麼?
1)、6 or 2 > 1
2)、3 or 2 > 1
3)、0 or 5 < 4
4)、5 < 4 or 3
5)、2 > 1 or 6
6)、3 and 2 > 1
7)、0 and 3 > 1
8)、2 > 1 and 3
9)、3 > 1 and 0
10)、3 > 1 and 2 or 2 < 3 and 3 and 4 or 3 > 2
4. while循環語句基本結構?
python
while 條件:
循環體
5. 利用while語句寫出猜大小的程序:
設定一個理想數字好比:66,讓用戶輸入數字,若是比66大,則顯示猜想的結果大了;若是比66小,則顯示猜想的結果小了;只有等於66,顯示猜想結果正確,而後退出循環。
a = int(input('請輸入要猜的數字'))
if a == 66:
print('猜想結果正確')
elif a < 66:
print('猜小了,請往大點猜')
elif a > 66:
print('猜大了,請往小點猜')
6. 在5題的基礎上進行升級,給用戶三次猜想機會,若是三次以內猜想對了,則顯示猜想正確,退出循環,若是三次以內沒有猜想正確,則自動退出循環,並顯示‘太笨了你....’。
count = 1
while count < 4:
num = int(input('請輸入數字:'))
if num > 66:
print('猜大了')
elif num < 66:
print('猜小了')
else:
print('恭喜你猜對了')
break
count += 1
else:
print('太笨了')
7. 使用while循環輸出 1 2 3 4 5 6 8 9 10
count = 1
while count < 11:
if count == 7:
print('')
else:
print(count)
count += 1
#
count = 1
while count < 11:
if count == 7:
pass
else:
print(count)
count += 1
#
count = 1
while count < 11:
if count == 7:
count += 1
print(count)
count += 1
#
count = 0
while count < 10:
count += 1
if count == 7:
continue
print(count)
#
#
#
8. 求1-100的全部數的和
a = 0
b = 0
while a < 100:
a += 1
b = b + a
print(b)
9. 輸出 1-100 內的全部奇數
a = 1
while a < 100:
print(a)
a += 2
10. 輸出 1-100 內的全部偶數
a = 0
while a < 99:
a += 2
print(a)
11. 求1-2+3-4+5 ... 99的全部數的和
count = 1
s = 0
while count < 100:
if count % 2 == 0:
s = s - count
else:
s = s + count
count += 1
print(s)
12. 用戶登陸(三次輸錯機會)且每次輸錯誤時顯示剩餘錯誤次數(提示:使用字符串格式化)
count = 1
while count <= 3:
username = input('用戶名')
password = input('密碼')
if username == 'alex' and password == '123':
print('登陸成功')
else:
print('用戶名或者密碼錯誤,還剩%s機會' % (3 - count))
count = count + 1