#使用方法修改字串的大小寫
message="welcome"# ""之間是字串
print(message)
message="abc"
print(message)
name="yu wenfei"
print(name.title())# .title是首字母大寫
name="yu wenfei"
print(name.upper())# .upper是全部字母大寫
name="yu wenfei"
print(name.lower())# .lower是全部字母小寫
#合併字串
first_name="yu"
last_name="wenfei"
full_name=first_name+" "+last_name# 合併兩個字串中間用+
print(full_name)
print("hello"+" "+full_name.title())
#使用製表符或換行符來新增空白
print("\tpython")# \t是製表符
print("\npython")# \n是換行符
#刪除空白
name=" yuwenfei"# name="\tyuwenfei"
print(name.lstrip())# .lstrip是清除字串左邊的空白
name="yuwenfei "
print(name.rstrip())# .rstrip是清除字串右邊的空白
#整數浮點數
a=5b=3
print(a+b)
b+=a
print(b)
b=b+1
print(b)
c=0.2
d=0.4
print(c+d)
print(c/d)
#使用函式str()避免型別錯誤
age=23
print(message)
a=3b=pow(3,3)
print(b)
python自學起步
python起步 toc 你好!這是你第一次使用markdown編輯器所展示的歡迎頁。如果你想學習如何使用markdown編輯器,可以仔細閱讀這篇文章,了解一下markdown的基本語法知識。矩陣建立中的錯誤 matrix1 1,2,3,4 5,6,7,8 9,10,11,12 矩陣中的每一行之間沒...
Python 基礎 (起步一)
基礎 僅僅列印 hello world 是不夠的,是不是?你需要做的更多,比如,你要接收一些輸入,操縱它們,並且從中得到一些什麼。我們可以通過python的常量和變數來達成這些目標,這一節我們還將學習一些其他概念。注釋 注釋是寫在 符號右邊的文字,主要用於作出注釋,以方便讀者理解程式。僅限一行,如果...
python起步之安裝(一)
一 python安裝 3.然後安裝就可以用了。二 numpy,scipy,matplotlib安裝 根據個人需要我需要安裝numpy scipy以及matplotlib。is a python 2 and 3 compatibility library 這樣幾經周折,matplotlib就可以正常使...