Posts by Rwaik • 1 point
1 post
-
0
votes3
answers158
viewsA: Access a value on an if condition
Use a .format: a = int(input('Digite um numero: ')) b = int(input('Digite outro numero: ')) c = a-b if(c > 0): print('O numero {} é maior que Zero'.format(c))…