Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 15 for letters (0.033 sec.)
3. 形式ばらない Python の紹介 — Python 3.6.5 ドキュメント 13880
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... サイズを変更したり、全てを削除したりもできます: >>> letters = [ 'a' , 'b' , 'c' , 'd' , 'e' , 'f' , 'g' ] >>> ... 'd', 'e', 'f', 'g'] >>> # replace some values >>> letters [ 2 : 5 ] = [ 'C' , 'D' , 'E' ] >>> letters ['a', ... 'C', 'D', 'E', 'f', 'g'] >>> # now remove them >>> letters [ 2 : 5 ] = [] >>> letters ['a', 'b', 'f', 'g'] >> ... replacing all the elements with an empty list >>> letters [:] = [] >>> letters [] 組込み関数 len() はリストに ...
https://man.plustar.jp/python/tutorial/introduction.html - [similar]
What's New in Python 2.4 — Python 3.6.5 ドキュメント 10989
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... n a # fast membership testing False >>> a # unique letters in a set(['a', 'r', 'b', 'c', 'd']) >>> '' . join ... set ( 'alacazam' ) # form a second set >>> a - b # letters in a but not in b set(['r', 'd', 'b']) >>> a | b # ... letters in either a or b set(['a', 'c', 'r', 'd', 'b', 'm' ... , 'z', 'l']) >>> a & b # letters in both a and b set(['a', 'c']) >>> a ^ b # letter ...
https://man.plustar.jp/python/whatsnew/2.4.html - [similar]
5. データ構造 — Python 3.6.5 ドキュメント 9961
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... t False >>> # Demonstrate set operations on unique letters from two words ... >>> a = set ( 'abracadabra' ) > ... >> b = set ( 'alacazam' ) >>> a # unique letters in a {'a', 'r', 'b', 'c', 'd'} >>> a - b # letters ... in a but not in b {'r', 'd', 'b'} >>> a | b # letters in a or b or both {'a', 'c', 'r', 'd', 'b', 'm', ' ... z', 'l'} >>> a & b # letters in both a and b {'a', 'c'} >>> a ^ b # letters in ...
https://man.plustar.jp/python/tutorial/datastructures.html - [similar]
2. 字句解析 — Python 3.6.5 ドキュメント 9125
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... テゴリコードは以下を表します: Lu - 大文字 (uppercase letters) Ll - 小文字 (lowercase letters) Lt - 先頭が大文字 ... (titlecase letters) Lm - 修飾文字 (modifier letters) Lo - その他の文字 ... (other letters) Nl - 数値を表す文字 (letter numbers) Mn - 字幅のな ...
https://man.plustar.jp/python/reference/lexical_analysis.html - [similar]
正規表現 HOWTO — Python 3.6.5 ドキュメント 8917
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... モジュールで提供されている Unicode データベースで letters としてマークされている全ての文字とマッチします。正 ... cd]*b . This matches the letter 'a' , zero or more letters from the class [bcd] , and finally ends with a 'b' ... ng; character class and literal strings will match letters by ignoring case. For example, [A-Z] will match lo ... wercase letters, too. Full Unicode matching also works unless the ...
https://man.plustar.jp/python/howto/regex.html - [similar]
15.3. secrets --- 機密を扱うために安全な乱数を生成する — Python 3.6.5 ドキュメ... 8917
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 成するには: import string alphabet = string . ascii_letters + string . digits password = '' . join ( choice ( ... 成するには: import string alphabet = string . ascii_letters + string . digits while True : password = '' . joi ...
https://man.plustar.jp/python/library/secrets.html - [similar]
6.2. re --- 正規表現操作 — Python 3.6.5 ドキュメント 8098
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ; expressions like [A-Z] will also match lowercase letters. Full Unicode matching (such as Ü matching ü ) als ... the IGNORECASE flag, they will match the 52 ASCII letters and 4 additional non-ASCII letters: 'İ' (U+0130, L ... 12A, Kelvin sign). If the ASCII flag is used, only letters 'a' to 'z' and 'A' to 'Z' are matched (but the fla ...
https://man.plustar.jp/python/library/re.html - [similar]
What's New in Python 2.2 — Python 3.6.5 ドキュメント 8098
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... neratorization.) string モジュールに新規定数 ascii_letters , ascii_lowercase , ascii_uppercase が追加されまし ... 。標準ライブラリ内では A-Za-z 範囲を意味する string.letters がありましたが、この仮定はロケールを使っている場合 ... は正しくありません。 string.letters は現在のロケールで定義される合法な文字集合に依存し ... て変化するからです。それら誤ったモジュールは ascii_letters を代わりに用いることで全て修正されました。 (Report ...
https://man.plustar.jp/python/whatsnew/2.2.html - [similar]
What's New In Python 3.0 — Python 3.6.5 ドキュメント 8098
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ens から tokenize.tokenize() になりました。 string.letters とその仲間 ( string.lowercase と string.uppercase ... ) は廃止されました。代わりに string.ascii_letters 等を使用してください。(削除された理由は string.let ...
https://man.plustar.jp/python/whatsnew/3.0.html - [similar]
21.23. http.cookies --- HTTPの状態管理 — Python 3.6.5 ドキュメント 7680
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 規則にせざるを得ませんでした。 文字集合 string.ascii_letters 、 string.digits 、 !#$%&'*+-.^_`|~: を、このモジュ ...
https://man.plustar.jp/python/library/http.cookies.html - [similar]
PREV 1 2 NEXT