You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pag.105===> A saída para o código abaixo não confere:
ERRADO
carros = 52
>>> "Em %d dias fizemos %f milhões %s." % (34,6.1,’reais’)
’Em 34 dias fizemos 6.100000 milhões de reais.’
CERTO
carros = 52
>>> "Em %d dias fizemos %f milhões %s." % (34,6.1,'reais')
'Em 34 dias fizemos 6.100000 milh\xf5es reais.'
Original issue reported on code.google.com by [email protected] on 5 Mar 2011 at 11:28
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 5 Mar 2011 at 11:28The text was updated successfully, but these errors were encountered: