Submit Search
世界一言語トークス by Python
•
9 likes
•
2,410 views
Yoshiori Shoji
Follow
1 of 95
Download now
Downloaded 31 times
More Related Content
世界一言語トークス by Python
1.
by Python
Yoshiori SHOJI 2009 12 12
2.
2009
12 12
3.
2009
12 12
4.
2009
12 12
5.
2009
12 12
6.
2009
12 12
7.
2009
12 12
8.
!? 2009
12 12
9.
2009
12 12
10.
name:$> 2009
12 12
11.
Yoshiori SHOJI 2009
12 12
12.
email:$> 2009
12 12
13.
yoshiori@gmail.com 2009
12 12
14.
site:$> 2009
12 12
15.
http://yoshiori.org/ 2009
12 12
16.
company:$> 2009
12 12
17.
DWANGO Co.,Ltd. 2009
12 12
18.
2009
12 12
19.
P y t
h o n 2009 12 12
20.
P y t
h o n 2009 12 12
21.
yoshiori $ 2009
12 12
22.
import this 2009
12 12
23.
The Zen
of Python Python ’ ’ 2009 12 12
24.
2009
12 12
25.
Python
Unicode 2009 12 12
26.
Python
http ://ja .wik iped ia.o rg/w iki/P Unicode ytho n 2009 12 12
27.
2009
12 12
28.
Guido
!! !! !! "Battery Included" 2009 12 12
29.
Ruby
LL C Scala Groovy JVM JavaScript prototype 2009 12 12
30.
2009
12 12
31.
2009
12 12
32.
!! 2009
12 12
33.
!? 2009
12 12
34.
?
if(foo == bar){foo.hoge();} bar.hoge(); foo.hoge(bar);bar.hoge(foo); if(hoge != foo) hoge.hoge(); foo.hoge(); 2009 12 12
35.
2009
12 12
36.
2009
12 12
37.
2009
12 12
38.
!? 2009
12 12
39.
end = None
: : def foo(): print ‘hoge’ end 2009 12 12
40.
end = None
: : def foo(): print ‘hoge’ end 2009 12 12
41.
end = None
: : def foo(): print ‘hoge’ end 2009 12 12
42.
!! Python
” ” ” ” 2009 12 12
43.
2009
12 12
44.
2009
12 12
45.
!? 2009
12 12
46.
def foo():
return 'hoge' foo() foo 2009 12 12
47.
(call
) def foo(): return 'hoge' def bar(func): print func() bar(foo) # ‘hoge’ 2009 12 12
48.
(
) 2009 12 12
49.
2009
12 12
50.
self 2009
12 12
51.
!? 2009
12 12
52.
class Hoge(object):
pass hoge = Hoge() hoge.a = 10 // hoge a hoge.b = 'hoge' print hoge.a // 10 print hoge.b // hoge 2009 12 12
53.
def initialize(obj, a,
b): obj.a = a obj.b = b class Hoge(object): pass hoge = Hoge() initialize(hoge, 10, 'hoge') // print hoge.a // 10 print hoge.b // hoge 2009 12 12
54.
class Hoge(object):
def initialize(obj, a, b): obj.a = a obj.b = b hoge = Hoge() Hoge.initialize(hoge, 10, 'hoge') // print hoge.a // 10 print hoge.b // hoge 2009 12 12
55.
class Hoge(object):
def initialize(obj, a, b): obj.a = a obj.b = b hoge = Hoge() Hoge.initialize(hoge, 10, 'hoge') hoge.initialize(10,'hoge') // print hoge.a // 10 print hoge.b // hoge 2009 12 12
56.
class Hoge(object):
def __init__(obj , a, b): obj.a = a obj.b = b hoge = Hoge(10,'hoge') // print hoge.a // 10 print hoge.b // hoge 2009 12 12
57.
class Hoge(object):
def __init__(obj , a, b): self self.a == aa obj.a self.b == bb obj.b hoge = Hoge(10,'hoge') // print hoge.a // 10 print hoge.b // hoge 2009 12 12
58.
this
? 2009 12 12
59.
2009
12 12
60.
PHP
Perl 2009 12 12
61.
!? 2009
12 12
62.
!! 2009
12 12
63.
!! 2009
12 12
64.
2009
12 12
65.
2009
12 12
66.
P y h
o n 2009 12 12
67.
P y h
o n 2009 12 12
68.
2009
12 12
69.
5 2009
12 12
70.
5
nil 2009 12 12
71.
5
nil true 2009 12 12
72.
5
nil true false 2009 12 12
73.
5
nil true false this 2009 12 12
74.
5
nil true false this super 2009 12 12
75.
5
nil None true True false False this self super super 2009 12 12
76.
5
nil None true True false False this self super super 2009 12 12
77.
ALGOL 2009
12 12
78.
DRY 2009
12 12
79.
2009
12 12
80.
2009
12 12
81.
help(fizzbuzz) 2009
12 12
82.
help(fizzbuzz) 2009
12 12
83.
help(fizzbuzz) 2009
12 12
84.
2 2009
12 12
85.
"Battery Included" 2009
12 12
86.
2009
12 12
87.
2009
12 12
88.
2009
12 12
89.
2009
12 12
90.
2009
12 12
91.
2009
12 12
92.
2009
12 12
93.
2009
12 12
94.
Guido 2009
12 12
95.
2009
12 12
Download