iT邦幫忙

一級屠豬士 的所有回答 645

mysql 的 text 欄位,要如何去除空白列?

我使用 trim() 搭配 length() 測試如下:Demo

2023-01-04 ‧ 由 ckp6250 提問

爬蟲問題

https://www.fileformat.info/info/unicode/char/6ca1/index.htm

2022-11-03 ‧ 由 tony20030201 提問

python二維列表合併

a=[['製造', '接獲'], ['到期', '依法'], ['接獲', '申請', '審查']] b=[['違反', '處罰', '違反'], ['燃燒',...

2022-10-19 ‧ 由 不明 提問

python 如何取得「串列中的串列」的len?

x = [[1], [1,2], [1,2,3], [], [[]]] y = [len(lst) for lst in x] print(y) [1, 2,...

想問問ubuntu desktop最新的登入頁面

https://zh.wikipedia.org/wiki/Ubuntu

SQL排序問題(先null->英文->數字)想請教優化方式

使用PostgreSQL CREATE COLLATION ithelp1010_weird ( PROVIDER = 'icu', LOCALE...

2022-10-10 ‧ 由 Mikey 提問

如何多次跳過Python 迴圈

Python 有 label 可以應用. https://peps.python.org/pep-3136/ libcst 可以試試看 https://libc...

2022-10-06 ‧ 由 lsesroom 提問

如何將mysql中表的某個數字欄位更新為有序的號,例如:1,5,10,15,20

create table it221003 ( id int , article text , itsorder int ); insert into i...

2022-10-03 ‧ 由 rosef35 提問

計算list多維數量

#python2.7 a=[['1', '1', '2', '2', '3'], ['4', '4'], ['1', '7', '9', '10'], ['6...

2022-09-18 ‧ 由 不明 提問

如何使用Python 抓取 XML namespaces 指定標籤的值?

#!/usr/bin/python import xml.etree.ElementTree as ET from urllib import urlopen...

2022-09-17 ‧ 由 cyril21147 提問