1 python裡面的資料型別 interage , floats , booleans , string等
2 python是乙個區分大小寫的語言
3 python的變數可以隨時進行覆蓋
把變數fifth_letter設定為monty的第五個字元
fifth_letter = "monty"[4]
print fifth_letter
parrot = "norwegian blue"
print len(parrot)
parrot = "norwegian blue"
print parrot.lower()
把parrot中的小寫字母轉換為大寫字母並列印
parrot = "norwegian blue"
print parrot.upper()
設定乙個變數pi值為3.14 , 把pi轉化為字串
pi = 3.14
print str(pi)
print "the value of pi is around " + str(3.14)
---- date and time
設定變數now的值為 datetime.now()
from datetime import datetime
now = datetime.now()
print now # 列印now的值
從datetime.now中得到的資訊中提取出year,month,day
from datetime import datetime
now = datetime.now()
print now.month
print now.day
print now.year
15介紹把輸出日期的格式轉化為mm//dd//yyyy,我們利用的是
+來轉化
列印當前的日期的格式為mm//dd//yyyy
from datetime import datetime
now = datetime.now()
print str(now.month)+"/"+str(now.day)+"/"+str(now.year)
列印當前的時間的格式為hh:mm:ss
from datetime import datetime
now = datetime.now()
print str(now.hour)+":"+str(now.minute)+":"+str(now.second)
把日期和時間兩個連線起來輸出
print str(now.month) + "/" + str(now.day) + "/" + str(now.year) + " "\
+str(now.hour) + ":" + str(now.minute) + ":" + str(now.second)
Python知識點1 基礎
python字串 1.用引號引起來的都叫字串,引號可以是單引號,也可以是雙引號,可以 在字串中新增引號和撇號 2.拼接字串 python使用 來拼接字串 print hello name.title 3.刪除字串中的空白 lstrip 刪除左側空白符,r,n,t rstrip 刪除右側空白符,r,n...
python學習記錄1 基礎知識
1.在python中使用變數時,需要遵守一些規則和指南。違反這些規則將引發錯誤,而指南旨在讓你編寫的 更容易閱讀和理解。請務必牢記下述有關變數的規則。1.1變數名只能包含字母 數字和下劃線。變數名可以字母或下劃線打頭,但不能以數字打頭,例如,可將變數命名為message 1,但不能將其命名為1 me...
知識點記錄1
1 tooltip 使用者將滑鼠指標暫停在元素上 例如暫停在 button 上 時出現的小型彈出視窗。當使用者將滑鼠指標移到具有工具提示的元素上時,包含工具提示內容 如描述控制項功能的文字內容 的視窗將會出現,該視窗在經過指定的時間後將會消失。如果使用者從控制項中移走滑鼠指標,則該視窗將會消失,因為...