Preparing your experience...
Loading scripts and resources
Preparing your experience...
Loading scripts and resources
Build working conditionals by filling in conditions and code blocks. P1: 'Number sign checker' → if num ___: print('positive') [> 0] elif num ___: print('negative') [< 0] else: print('zero'). P2: 'Leap year checker' → if year % 4 ___ 0: [==] if year % 100 ___ 0: [!=] print('Leap year!') P3: 'Login s
16
Likes
0
Remixes
0
Comments