Question: Which is true of the badly formatted code? x = input ( ) if x = = ' a ' : print ( ' first

Which is true of the badly formatted code?
x = input()
if x =='a':
print('first')
print('second')if age <18:
x = x +5
else:
x = x +1
a.
x = x +5 if age <18 else x +1
b.
x = x +5 if age >=18 else x +1
c.
if age <18 x = x +5 else x = x +1
d.
x = x +1 else if age <18 x +5

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!