Quick actions

cmd+k|ctrl+k

Navigation

Languages

Intro Lessons

Snippet info

Language

Python

Visibility

public

Author

bluedoodle

Created

2025-10-05T14:47:08.420305Z

Updated

2025-10-05T15:19:02.157423Z

print(type(2/4))

print(type(2+4))

print(round(3.1))

pickle=5
pickle*=3
print(pickle)

weather = "\t It\'s \"kind of\" sunny \n hope you have a good day!"
print(weather)

name = 'Stephen'
age = 36

print(f'Hey {name}. You are {age} years old!')
INFO