1.可以輸出字符串
print('hello python')
2.可以輸出變量
a,b = 5,6
print(a,b)
3.輸出字符串模板
方式一:
print('a的值:{},b的值:{}'.format(a,b)) #a的值:5,b的值:6
方式二:
print('a的值:{0},b的值:{1}'.format(a,b)) #a的值:5,b的值:6
4.默認輸出帶有換行,使用end=‘’可以顯示在一行
a,b = 5,6
print(a,end='')
print(b)
#result #56
c = input('請輸入內容:')
print(c)
#result #請輸入內容:hello python hello python
因為用戶輸入的值都是字符串,通過eval()可以將字符串轉成整數
a = eval(input('請輸入數字:')) #11
print(a+30,type(a)) #41 <class 'int'>
print('abcdefg'[2:]) #cdefg 從第三位到最後
print('abcdefg'[2:4]) #cd 只包含第三位和第四位
print('abcdefg'[:4]) #abcd 前面默認第一位,從第四位開始截取
print('abcdefg'[:]) #abcdefg 默認全部顯示
print('abcdefg'[::]) #abcdefg 默認全部顯示
print('abcdefg'[::-1]) #gfedcba 進行從右到左全部輸出
print('abcdefg'[::2]) #aceg 輸出偶數位所有字符 2代表步長
print('abcdefg'[::3]) #adg 輸出奇數位所有字符 3代表步長