Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/bslatkin/effectivepython
/ RGBA
Class
RGBA
example_code/item_051.py:139–144 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
137
138
print(
"Example 14"
)
139
class
RGBA:
140
def
__init__(self, *, red, green, blue, alpha=1.0):
141
self.red = red
142
self.green = green
143
self.blue = blue
144
self.alpha = alpha
145
146
147
print(
"Example 15"
)
Callers
1
item_051.py
File · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected