Python學習第一周
阿新 • • 發佈:2017-11-02
malle png image += 編寫 range == 第一個程序 from
- 一、我的第一個程序
print("Hello word!")
所以說python是一款非常簡潔的語言,不像c,c++等等寫一個簡單的小程序還要調用一堆庫。另外,python 3的版本支持中文編寫。
- 二、變量 的使用
Python是一種動態的,強類型語言
name="fromzore" print(name)
不用定義變量的類型,系統根據你輸入的自動給變量定義
name="fromzore" age=input("age"); pt2="%s你的年齡是%s"%(name,age) print(pt2)
因為在input中,他默認你傳入的是str類型,所以想用%d就需要強制轉換
name="fromzore" age=int(input("age")) pt2="%s你的年齡是%d"%(name,age) print(pt2)
無報錯。
- 三、循環
循環分為while循環和for循環,和c等語言的不同之處在於python的這些循環可以後接else語句
age=18 sum=0 while sum<3: count= int(input("age")) sum+=1 if sum==count: print("you are right") break elif age<count:print("It is biger than age") elif age>count: print("It is smaller than age") else: print("Multiple input errors")
結果是這樣的
for循環
for i in range(3): count= int(input("age")) sum+=1 if sum==count: print("you are right") break elif age<count: print("It is biger than age") elif age>count: print("It is smaller than age") else: print("Multiple input errors")
將while改為for結果是一樣的。
ps:初次發博客有錯誤或是哪裏寫的不好,請多多指教。
Python學習第一周