講解第一模組思維導圖(口述5分鐘)1.分別解釋
"=", "==", "+="
的含義(口述)(1
分鐘)=賦值
==邏輯判單 false or ture
2.兩個變數值的關係?(口述)(1
分鐘)- n1 = 123456
- n2 = n1
n2 n1 不同的記憶體位址指向同一值
3.請寫出 「路飛學城」 分別用
utf - 8
和gbk
編碼所佔的位數(口述)(1
分鐘)utf-8 佔12位、gbk 佔8位
4.簡述python中的幾種資料型別(口述)(1
分鐘)5.
資料型別的可變與不可變分別有哪些?區分的原因是什麼?
可雜湊是什麼意思?雜湊值是什麼?id()
是什麼?(口述)(2
分鐘)
數列 字典 字串 元組 集合
list 數列是可變資料型別
字典 字串 元組 都是不可變資料型別
hash值的是記憶體位址計算過程,是依據這個值的一些特徵計算的,這就要求被hash的值必須固定。
不可變的資料型別才能hash ,可變的不可hash
6. is 和 == 的區別?(口述)(1
分鐘)is 是邏輯判斷左右是false or ture
== 是左右是不是同一字串
7.列表li = ['alex', 'egon', 'yuan', 'wusir', '666'](程式設計)(3
分鐘)- 1.
把666替換成999
- 2.
獲取"yuan"
索引- 3.
假設不知道前面有幾個元素,分片得到最後的三個元素( [-3:] )
li_1=li[4]='999'
index1=li.index('yuan')
print(li)
print(index1)
print(li[-3:])
8.將字串s = 「www.luffycity.com」給拆分成列表:li = ['www', 'luffycity', 'com'] (程式設計)(2
分鐘)
s ="www.luffycity.com"li=li=s.split('.')
print(li)
9.對字典進行增刪改查(程式設計)(5
分鐘)d =
d["cto"]="技術總監小哥" #增print(d)
d.pop("ui") #刪
print(d)
d["op"]="運維小妹" #改
print(d)
d=d.get("development") #查
print(d)
10.計算1 + 2 + 3... + 98 + 99 + 100 (程式設計題)(10
分鐘)
n=1a=0while n<101:
a+=n
n=n+1
print(a)
11.製作趣味模板程式(程式設計題)(5
分鐘)需求:等待使用者輸入名字、地點、愛好,根據使用者的名字和愛好進行任意現實
如:敬愛可愛的***,最喜歡在***地方幹***
name=input()age=input()
other=input()
print(" 敬愛可愛的%s 最喜歡在 %s地方幹 %s "%(name, age, other))
12.寫乙個三次認證(程式設計)(10
分鐘)實現使用者輸入使用者名稱和密碼, 當使用者名為
seven
或alex
且密碼為
123時, 顯示登陸成功, 否則登陸失敗, 失敗時允許重複輸入三次
while n<4:name = input("input name")
code = input("input code")
if name=="seven" or name=="alex" and code=="123":
print('success')
break
n=n+1
print("fail")
第一次考核整理
t1斐波那契數列,規則 1,1,2,3,5,8,13,21 輸出前20個數字。並輸出前20的和 python 實現 def fibonacci n if n 1 return 1 elif n 2 return 1 else return fibonacci n 1 fibonacci n 2 nu...
MySQL 學習教程 一 整理 資料庫概要
注 參考自 資料庫,可以簡單的解釋為 高效的儲存和處理資料的介質 主要分為磁碟和記憶體兩種 根據資料庫儲存介質的不同,可以將其分為兩類,即 關係型資料庫 sql 和非關係型資料庫 nosql,not only sql 關係型資料庫 非關係型資料庫 關係型資料庫 非關係型資料庫 關係型資料庫,是一種建...
C fscanf 讀取一整行
scanf,fscanf很相似,都是從流中讀取輸入,然後賦值給變數 int scanf const char format,int fscanf file stream,const char format,c 單一字元 乙個字符集 輸入項讀入後跳過,不賦予任何變數 scanf,fscanf 自動跳過...