Python/サンプル/数値変換・文字列変換・int,str
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
開始行:
#navi(../)
* Pytnonで数値変換・文字列変換・int,str [#sa837479]
Pythonで数値のみで構成された文字列を数値に変換するintと数...
#contents
#htmlinsertpcsp(ll-top.html,ll-sp.html)
* 動作確認環境 [#x06bcb3a]
$ python --version
Python 2.7.3
$ lsb_release -d
Description: Ubuntu 12.04.4 LTS
* 関連記事 [#na951d00]
-[[Pythonで四則演算のサンプルコード>Python/サンプル/Pytho...
-[[Pytnonで数値変換・文字列変換・int,str>Python/サンプル/...
-[[Pythonで小数点以下の値の操作・四捨五入や切上げ、切捨て...
-[[変数のオブジェクト型を調べる方法・type>Python/サンプル...
* Pythonの対話式で確認 [#k2ae3687]
以下の通り、変数a,b,cを使ってintとstrを使って変換していま...
typeによりクラスを表示し確認しています。
$ python
Python 2.7.3 (default, Sep 26 2013, 20:03:06)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for mor...
>>> i = 100
>>> s = "200"
>>> type(i)
<type 'int'>
>>> type(s)
<type 'str'>
>>> c = int(s)
>>> c
200
>>> type(c)
<type 'int'>
>>> c = str(i)
>>> type(c)
<type 'str'>
>>> c
'100'
>>> exit()
* サンプルコード [#g3238738]
以下に変換し変換後のクラスを表示するサンプルコードを記し...
i = 100
s = "200"
c = str(i)
print type(c)
c = int(s)
print type(c)
上記サンプルコードの実行結果を記します。
<type 'str'>
<type 'int'>
以上、数値から文字列変換と数値のみの文字列から数値変換の...
#htmlinsertpcsp(ll-btm.html,ll-sp.html)
終了行:
#navi(../)
* Pytnonで数値変換・文字列変換・int,str [#sa837479]
Pythonで数値のみで構成された文字列を数値に変換するintと数...
#contents
#htmlinsertpcsp(ll-top.html,ll-sp.html)
* 動作確認環境 [#x06bcb3a]
$ python --version
Python 2.7.3
$ lsb_release -d
Description: Ubuntu 12.04.4 LTS
* 関連記事 [#na951d00]
-[[Pythonで四則演算のサンプルコード>Python/サンプル/Pytho...
-[[Pytnonで数値変換・文字列変換・int,str>Python/サンプル/...
-[[Pythonで小数点以下の値の操作・四捨五入や切上げ、切捨て...
-[[変数のオブジェクト型を調べる方法・type>Python/サンプル...
* Pythonの対話式で確認 [#k2ae3687]
以下の通り、変数a,b,cを使ってintとstrを使って変換していま...
typeによりクラスを表示し確認しています。
$ python
Python 2.7.3 (default, Sep 26 2013, 20:03:06)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for mor...
>>> i = 100
>>> s = "200"
>>> type(i)
<type 'int'>
>>> type(s)
<type 'str'>
>>> c = int(s)
>>> c
200
>>> type(c)
<type 'int'>
>>> c = str(i)
>>> type(c)
<type 'str'>
>>> c
'100'
>>> exit()
* サンプルコード [#g3238738]
以下に変換し変換後のクラスを表示するサンプルコードを記し...
i = 100
s = "200"
c = str(i)
print type(c)
c = int(s)
print type(c)
上記サンプルコードの実行結果を記します。
<type 'str'>
<type 'int'>
以上、数値から文字列変換と数値のみの文字列から数値変換の...
#htmlinsertpcsp(ll-btm.html,ll-sp.html)
ページ名: