Quick actions

cmd+k|ctrl+k

Navigation

Languages

Data Types

Snippet info

Language

Python

Visibility

public

Author

shigeotoga

Created

2026-08-03T04:01:08.591648Z

Updated

2026-08-03T04:01:08.591648Z

number = 10             #int
decimal = 10.5          #float
binary = True           #bool
words = "Hello people"  #string

print(str(number) + "\n")
print(str(decimal) + "\n")
print(str(binary) + "\n")
print(words + "\n")
INFO