1. 程式人生 > >Python基礎一

Python基礎一

nal 不可變 規則 沒有 ber put you name class

一、介紹

python部分以python3為基礎進行闡述

print("Hello World!")

二、變量

python沒有常量的概念,一切皆可以是變量,但習慣性的用全大寫字母組成的字符代表常量,AGE_OF_RAP = 56

變量是指可變化的量,可用來代指內存裏某個地址中保存的內容。有如下規則:

1.變量名只能是 字母、數字或下劃線的任意組合

2.變量名的第一個字符不能是數字

3.以下關鍵字不能聲明為變量名[‘and‘, ‘as‘, ‘assert‘, ‘break‘, ‘class‘, ‘continue‘, ‘def‘, ‘del‘, ‘elif‘, ‘else‘, ‘except‘, ‘exec‘, ‘finally‘, ‘for‘, ‘from‘, ‘global‘, ‘if‘, ‘import‘, ‘in‘, ‘is‘, ‘lambda‘, ‘not‘, ‘or‘, ‘pass‘, ‘print‘, ‘raise‘, ‘return‘, ‘try‘, ‘while‘, ‘with‘, ‘yield‘]

三、字符串

字符串是python基礎數據類型之一,由單引號或雙引號組成,如‘i love python‘或"i love python",具有不可變性,因此一旦建立便不能修改

四、讀取用戶輸入

python3棄用了raw_input(),只用input()進行讀取用戶的輸入

name = input("What is your name?")

五、列表

重要的基本數據類型之一

list1 = [physics, chemistry, 1997, 2000]
list2 = [1, 2, 3, 4, 5 ]
list3 = ["a", "b", "c", "d
"]

六、字典

重要的基本數據類型之一

dict1 = { abc: 456 }
dict2 = { abc: 123, 98.6: 37 }

七、流程控制

x = int(input("請輸入您的總分:"))
if x >= 90:
    print()
elif x>=80:
    print()
elif x >= 70:
    print()
elif x >= 60:
    print(合格)
else:
    print(不合格)

八、循環

#!/usr/bin/python
count = 0 while count < 9: print The count is:, count count = count + 1 print "Good bye!"

Python基礎一