python常用連線字串

2022-08-21 12:12:17 字數 511 閱讀 1877

1.使用佔位符%

print(('

%s%s%s

' % ('

one','

two', '

three

')))

view code

2.'+'號連線

字串是不可變物件,每次改變會申請一塊新的記憶體,操作符+連線字串的時候會涉及好幾次記憶體申請和複製,當字串量大的時候不建議使用效能會降低

print("

hello

" + "

world

")

view code

3.join連線

join方法效能高,操作符join會在連線字串的時候先計算需要多大的記憶體並將字串複製過去。

print("".join('

a|b|c|d|e|f

'.split('

|')))

view code

常用JDBC連線字串

oracle driver oracle.jdbc.driver.oracledriver url jdbc oracle thin localhost 1521 資料庫名 oracle安裝路徑.product 11.1.0 db 1 jdbc lib下的檔案 ojdbc6.jar 用於 jdk 1...

連線字串

建立資料庫連線 sqlconnection con new sqlconnection con.connectionstring system.configuration.configurationmanager.connectionstrings con tostring 配置檔案中已經配置好連線...

PYTHON字串常用函式

1.find and rfind 從左開始找 title find le 存在返回索引值,不存在 1 從右開始找 title find le 存在返回索引值,不存在 1 2.join 列表轉成字串 join list 3.split 字串轉成列表 ss,aa,cc split ss aa cc 4....