On Macintosh, it is the ASCII CR (return)character.
Macintosh では、 ASCII CR (復帰) 文字です。 - Python
a superset of the ASCIIcharacter set
ASCII 文字集合の上位セット - 研究社 英和コンピューター用語辞典
Checks for an ASCII lower-case character.
ASCII 小文字かどうかを調べます。 - Python
Checks for an ASCII whitespace character.
ASCII 余白文字かどうかを調べます。 - Python
(not in POSIX) Fill character is ASCII DEL (0177).
(POSIX にはない) 補填文字を ASCII DEL にする。 - JM
ASCIIcharacter or backslash escape
ASCII 文字かバックスラッシュ付きのエスケープ文字 - JM
Return a string representation of the ASCIIcharacter c.
ASCII 文字 c の文字列表現を返します。 - Python
a 7-bit coded character set = a character set coded in 7 bits
7 ビットでコード化された文字集合《cf. ASCII character set》 - 研究社 英和コンピューター用語辞典
specify an ASCIIcharacter code
アスキー文字コードを指定する - 研究社 英和コンピューター用語辞典
the 7-bit ASCIIcharacter set
7 ビットのアスキー文字集合 - 研究社 英和コンピューター用語辞典
On Unix, this is the ASCII LF (linefeed)character.
Unixでは、行終端は ASCII LF (行送り: linefeed)文字です。 - Python
(e.g., ASCIIcharacter coding is used),
(たとえば、ASCII文字コーディングが使われている、とする)。 - Electronic Frontier Foundation『DESのクラック:暗号研究と盗聴政策、チップ設計の秘密』
Return the ASCII value of a string of one character or a Unicode character. 1 文字からなる文字列または Unicode 文字の ASCII 値を返します。 - Python
Character large objects (CLOB) for text or ascii data ('clob')
テキストや ASCII データを保持する キャラクタラージオブジェクト (CLOB)('clob') - PEAR
the character whose ASCII code is nnn (octal) OPTIONS
アスキーコードが nnn (8 進) の文字 - JM
part corresponds to the 7-bit ASCIIcharacter set.
の部分は 7 ビット ASCII 文字集合に相当している。 - JM
of the ASCIIcharacter representation of the printable characters
印刷可能文字での ASCII 文字表示を追加する。 - JM
Note:Passwords are limited to a subset of the ASCIIcharacter set.Versions of this module prior to 2.3 were extremely limited.
+ 注意:Passwords are limited to a subset of the ASCII character set.+ Versions of this module prior to 2.3 were extremely limited. Starting with+ 2.3, all ASCII punctuation is allowed in passwords. However, note that+ whitespace and non-printable characters are not allowed in passwords. This+ is a limitation of the way the .netrc file is parsed and may be removed in+ the future. - Python
the ASCIIcharacter set is the most universal character coding set
ASCII文字セットは最も一般的に用いられている文字セットである - 日本語WordNet
the standard ASCIIcharacter set
標準的なアスキー文字集合 - 研究社 英和コンピューター用語辞典
Checks for an ASCII control character (in the range 0x00 to 0x1f).
ASCII 制御文字 (0x00 から 0x1f の範囲) かどうかを調べます。 - Python
Checks for ASCII any printable character except space.
空白以外の ASCII 印字可能文字かどうかを調べます。 - Python
Checks for an ASCII control character (ordinal values 0 to 31).
ASCII 制御文字 (0 から 31 までの値) かどうかを調べます。 - Python
Checks for a character value that fits in the 7-bit ASCII set.
文字が 7 ビット ASCII 文字に合致するかどうかを調べます。 - Python
Checks for any ASCII printable character including space.
空白文字を含め、 ASCII 印字可能文字かどうかを調べます。 - Python
Checks for a non-ASCII character (ordinal values 0x80 and above).
非 ASCII 文字 (0x80 またはそれ以上の値) かどうかを調べます。 - Python
In the Gopher protocol, Gopher selector strings are a sequence of octets which may contain any octets except 09 hexadecimal (US-ASCII HT or tab), 0A hexadecimal (US-ASCII character LF), and 0D (US-ASCII character CR).
Gopher プロトコルでは、Gopher セレクタ文字列はオクテット文字からなり、16進数の 09 (US-ASCII の HT または tab)、 0A (US-ASCII の LF 文字)、0D (US-ASCII の CR 文字) 以外ならどんなオクテットも指定できる。 - JM
The horizontal tab character is encoded in ASCII as decimal 9.
水平タブ文字は, ASCII では十進数の 9 として符号化される - 研究社 英和コンピューター用語辞典
Checks for an ASCII alphanumeric character; it is equivalent to"isalpha(c) or isdigit(c)".
ASCII 英数文字かどうかを調べます; "isalpha(c) or isdigit(c)" と等価です。 - Python
Checks for an ASCII alphabetic character; it is equivalent to"isupper(c) or islower(c)".
ASCII アルファベット文字かどうかを調べます; "isupper(c) or islower(c)" と等価です。 - Python
Checks for any printable ASCIIcharacter which is not a space or an alphanumeric character. 空白または英数字以外の ASCII 印字可能文字かどうかを調べます。 - Python
The name of a keygenerating printable ASCIIcharacter is the key's character.
印字可能なASCII 文字を生成するキーの名前はそのキーの文字自体になります。 - Python
This means that, with ASCII, each character is represented by a single byte. これは、ASCIIでは、各文字はシングルバイトで表すことを意味します。 - Gentoo Linux
checks whether c is a 7-bit unsigned char value that fits into the ASCIIcharacter set.
c が、ASCII文字セットに合致する 7ビットのunsigned charであるかを調べる。 - JM
The delimiter character is ":" on Unix,";" on Windows, and "n" (the ASCIInewline character) on Macintosh.
デリミタ文字は Unixでは":"、Windows では";" 、Macintosh では "n" (ASCII改行文字) です。 - Python
For instance, the convention for text files is lines of ASCII characters separated by a single newline character (the ASCII line-feed character), but the kernel knows nothing about this convention.
たとえば、テキストファイルは改行文字 (ASCII LF 文字) で区切られたASCII 文字の行の集まりですが、 カーネルはそのような構造を関知しません。 - FreeBSD
TIS 620 is a Thai national standard character set and a superset of US ASCII.
TIS 620 はタイの国定標準文字セットで、US ASCII の上位集合である。 - JM
Return a string of one character whose ASCII code is the integeri.
ASCII コードが整数 i となるような文字 1 字からなる文字列を返します。 - Python
Notice here how we wanted the Subject: field to contain a non-ASCII character? Subject: フィールドに非ASCII文字をふくめていることに注目してください。 - Python
GUITAR CHORD DIAGRAM NOTATION BY ASCIICHARACTER (CODE) アスキー文字(コード)によるギターコードダイヤグラム表記 - 特許庁
Many 8-bit codes (such as ISO 8859-1, the Linux default character set) contain ASCII as their lower half.
(ISO 8859-1 のような) 多くの 8 ビットのコードでは下半分にASCII を含んでいる。 - JM
The curses. ascii module supplies name constants for ASCII characters and functions to test membership in variousASCII character classes. curses.ascii モジュールでは、 ASCII 文字を指す名前定数と、様々な ASCII 文字区分についてある文字が帰属するかどうかを調べる関数を提供します。 - Python
If it is treated as part of a character representation scheme such as ASCII, it would represent the '=' character.
これがASCIIのような文字表示系の一部として扱われる場合は、'='(イコール)文字として表わされよう。 - コンピューター用語辞典
So, the first UTF-8 byte is used for encoding ASCII, giving the character set full backwards compatibility with ASCII. なぜなら、これらの文字セットでは最初の1バイトしか使われないからです。 - Gentoo Linux
Return the 8-bit character corresponding to the given ASCII character(the character bit value is bitwise-ored with 0x80).
与えた文字に対応する 8 ビット文字を返します (0x80 とビット単位で論理和を取ります) 。 - Python
UNIX style operating systems use a single character: ASCII code 10, the line feed (LF).
UNIXスタイルのオペレーティングシステムでは、改行文字は ASCII コード 10 の line feed (LF) の 1文字が使われています。 - FreeBSD
When a virtual terminal is created or reset, the ASCIIcharacter set is designated as G0 through G3.
仮想端末の生成時やリセット時には、ASCII 文字集合が G0 から G3 までに指定される。 - JM
A subclass must override this method to provide support for character references outside of the ASCII range. ASCII 範囲外の文字をサポートするには、サブクラスでこのメソッドをオーバーライドする必要があります。 - Python
The name of a control-key combination is a two-character string consisting of a caret followed by the corresponding printable ASCIIcharacter. コントロールキーと組み合わせたキーの名前は、キャレットの後に対応するASCII 文字が続く 2 文字の文字列になります。 - Python
(not in POSIX) If ECHO is also set, ASCII control signals other than TAB, NL, START, and STOP are echoed as ^X, where X is the character with ASCII code 0x40 greater than the control signal.
(POSIX にはない) ECHO も同時に設定された場合、TAB, NL, START, STOP の ASCII 制御文字が ^X としてエコーされる。 X は制御文字より ASCII コードで 0x10 だけ大きな文字である。 - JM
Copyright (c) 2001 Robert Kiesling. Copyright (c) 2002, 2003 David Merrill. The contents of this document are licensed under the GNU Free Documentation License. Copyright (C) 1999 JM Project All rights reserved.
Copyright 2001-2004 Python Software Foundation.All rights reserved. Copyright 2000 BeOpen.com.All rights reserved. Copyright 1995-2000 Corporation for National Research Initiatives.All rights reserved. Copyright 1991-1995 Stichting Mathematisch Centrum.All rights reserved.