記錄一下pycharm的經常使用技巧:
ctrl + ? 註釋,取消註釋
shift+ enter 快速換行
ctrl + 代碼 查看對應代碼幫助
ctrl + d 複製,粘貼當前行在代碼尾部git
以下爲文件操做:
點擊右鍵 copy path 複製路徑
點擊右鍵 show in the explorer 在資源管理器中打開
點擊右鍵 move to the right 對比功能
點擊右鍵 show history 查看文件修改記錄ide
菜單view -tools 中有termial , 能夠不用切換到window CMD中去ip
對字符串進行處理後打印出來,字符串並不會變化。
例一:替換功能
str01='''York is a handsome boy.'''
loc01=int(input("輸入替換位置:"))
source_char01=str01[loc01]
char01=input("輸入替換的字符:")
print(str01.replace(source_char01,char01,2))資源
######打印輸出:
輸入替換位置:1
輸入替換的字符:X
YXrk is a handsXme boy.字符串
例二:
str01='''York is a handsome boy.'''
print(str01)
print(str01.startswith('York'))
print(str01.endswith('0'))
print(str01.find('o'))
print(str01[6])
print(str01.title())
print(str01.upper())
print(str01.lower())pycharm
######打印輸出:
York is a handsome boy.
True
False
1
s
York Is A Handsome Boy.
YORK IS A HANDSOME BOY.
york is a handsome boy.input
例三:
str01 = "中國人民是偉大的人民。 中國是偉大的國家。 34"
str02 = ''
list01=['a','b','c','d']
print(str01.isdigit())
print(str01.center(50,""))
str03=str01.center(50,"")
print(str03.strip(""))
print(str01.count("人"))
print(str01.split("人"))
print(str02.join(list01))it
######打印輸出:
False
中國人民是偉大的人民。 中國是偉大的國家。 34
中國人民是偉大的人民。 中國是偉大的國家。 34
2
['中國', '民是偉大的', '民。 中國是偉大的國家。 34']
abc*dclass