Coggle requires JavaScript to display documents.
myvar = 3
print("hello")
if 3 > 4: #body of if statement a = 1 print(a) elif 3 == 4: print('Not possible!') else: print('Correct Answer')
3 * (4 - 1)
a = 'hello' b = 3.14 type(a) type(b)
c = "hello" print( c * 3)