ページ

title

告発\金沢地方検察庁\最高検察庁\法務省\石川県警察御中
弁護士と裁判官が共同で確定させた傷害・準強姦被告事件判決の再捜査要請に係る石川県警察珠洲警察署提出書面の情報公開

殺人未遂事件幇助の被告訴人: 木梨松嗣弁護士(金沢弁護士会)、岡田進弁護士(金沢弁護士会)、長谷川紘之弁護士(金沢弁護士会)、若杉幸平弁護士(金沢弁護士会)
名誉毀損罪の被告訴人: モトケンこと矢部善朗弁護士(京都弁護士会)、小倉秀夫弁護士(東京弁護士会)
市場急配センター株式会社 石川県金沢市駅西本町5丁目10番20所在
作成管理者: 石川県鳳珠郡能登町字宇出津 廣野秀樹
金沢地方検察庁御中

2020年9月17日木曜日

* pythonの「objectをeval()で再び元のオブジェクトに戻せる文字列に変換して返す。」というrepr(object)関数

* pythonの「objectをeval()で再び元のオブジェクトに戻せる文字列に変換して返す。」というrepr(object)関数

:CATEGORIES: python

Pythonのstr( )とrepr( )の使い分け | ガンマソフト株式会社 https://gammasoft.jp/blog/use-diffence-str-and-repr-python/

```
In [7]: repr(users)
Out[7]: "{'a1', 'motoken_tw', 'uwaaa', 'fukazawas', 'z1', 'lawks', 'lawks2', 'b1'}"

In [8]: print(users)
{'a1', 'motoken_tw', 'uwaaa', 'fukazawas', 'z1', 'lawks', 'lawks2', 'b1'}

In [9]: import datetime

In [10]: today = datetime.date.today()

In [11]: print(today)
2020-09-17

In [12]: repr(today)
Out[12]: 'datetime.date(2020, 9, 17)'

In [13]: today.type
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
in
----> 1 today.type

AttributeError: 'datetime.date' object has no attribute 'type'

In [14]: type(tody)
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
in
----> 1 type(tody)

NameError: name 'tody' is not defined

In [15]: today.type

---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
in
----> 1 today.type

AttributeError: 'datetime.date' object has no attribute 'type'

In [16]: type(today)

Out[16]: datetime.date

In [17]: day = datetime.date(2020, 9, 17)

In [18]: day

Out[18]: datetime.date(2020, 9, 17)

In [19]: print(day)

2020-09-17

In [20]: type(day)

Out[20]: datetime.date
```

0 件のコメント:

コメントを投稿