Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
Python
hard
Python
interning
Single-choice MCQ
5 views
What does this code print?
a, b = 256, 256\nc, d = 257, 257\nprint(a is b, c is d)