Quick actions

cmd+k|ctrl+k

Navigation

Languages

EXCERSICE 01 

Snippet info

Language

Python

Visibility

public

Author

sermon0906

Created

2026-06-23T23:45:35.055986Z

Updated

2026-06-23T23:45:35.055986Z

print((5 + 4) * 10 / 2)

print(((5 + 4) * 10) / 2)

print((5 + 4) * (10 / 2))

print(5 + (4 * 10) / 2)

print(5 + 4 * 10 // 2)
INFO