Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
Python
medium
Python
interning
Single-choice MCQ
2,965 views
What will this code print?
a = 256 b = 256 c = 257 d = 257 print(a is b, c is d)