Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
point = (3, 7) x, y = point print(f"x={x}, y={y}") rgb = (255, 128, 0) print(rgb[0]) # 255 print(rgb[-1]) # 0 print(rgb[:2]) # (255, 128)
Result
Open