message = "world!"
print(message) #輸出結果為:world
message = "hello world!"
#輸出結果為:hello world
print(message)
**用引號(單/雙引號)括起來的都是字串
str1 = "this is a string"
str2 = 'this
is also a string'
2.1使用方法修改字串的大小寫
message = "hello world"
print(message.title()) #title()方法,以首字母大寫的方式顯示每個單詞
print(message.upper()) #upper()方法,以所有字母大寫的方式顯示每個單詞
print(message.lower()) #lower()方法,以所有字母小寫的方式顯示每個單詞
2.2合併字串
first_name = "zhang"
second_name = "san"
full_name = first_name + " "+second_name
print(full_name) #列印結果為:zhang san
2.2去除字串首尾的空白(空格)
print(name)
print(name.rstrip()) #rstrip()刪除字串末尾的空格
print(name.lstrip()) #lstrip()刪除字串首部的空格
print(name.strip()) #strip()刪除字串首尾的空格
python使用兩個乘號表示乘方運算
print(4+4)
print(9-1)
print(16/2)
print(4
*2)print(2
**3)
#上述語句列印出來均為8,第三個,列印出來是8.0
age = 23
#python中要使數字與其他連線時,需強制轉換str(age)將其轉換為字串類
#型,否則報錯
print(message)
python學習之路day2 迴圈
猜三次年齡,猜錯了三次程式退出 coding utf 8 age 56 count 0 while count 3 guess age int input 請輸入年齡 if guess age age print 你猜對了 break elif guess age age print 猜大了 els...
Python程式設計之路 day2
python開發ide integrated development environment pycharm eclipse 1.python運算子 運算結果是值 1.算術運算 a 10 10 print a 1002.賦值運算 a 11 a a 1 或 a 1 print a 12運算結果是布林值...
Python基礎學習 Day2
python基礎學習 day2 pop 可以移除列表指定位置的物件並返回被刪除物件的值,注意該方法預設值為列表中的最後乙個元素且有返回值 del 移除列表中指定位置的多個物件,del 方式可以刪除整個列表,且列表刪除後無法訪問。拷貝分為copy 拷貝父物件,不會拷貝物件的內部的子物件和deepcop...