-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathStringFormatDemo.py
More file actions
63 lines (36 loc) · 887 Bytes
/
StringFormatDemo.py
File metadata and controls
63 lines (36 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# -*- coding: utf-8 -*-
# <nbformat>3.0</nbformat>
# <codecell>
fp = 3.4
complex = 3+4j
# <codecell>
print "%f"%(fp)
# <codecell>
print "%f, %f"%(fp, complex)
# <codecell>
print "%f, %f+%fj"%(fp, complex.real, complex.imag)
# <markdowncell>
# But what if you don't know what kind of object you need to format in your string?
# <codecell>
print "%s"%("The string formatter")
# <codecell>
# works for anything...
"%s, %s"%(fp, complex)
# <markdowncell>
# What it does is call the __str__ method on the object.
#
# There is also "%r" which calls the __repr__ method.
# <codecell>
"%r, %r"%(fp, complex)
# <codecell>
class test(object):
def __str__(self):
return "This is the ouput of the __str__ method"
def __repr__(self):
return "This is the ouput of the __repr__ method"
# <codecell>
t = test()
"%s"%t
# <codecell>
"%r"%t
# <codecell>