Why does my print command not work?

Asked

Viewed 294 times

0

my print command doesn’t work at all, when I use it in pycharm it doesn’t work and when I do a script with Idle it doesn’t work either, but when I do with the python prompt it works.

inserir a descrição da imagem aqui

script asks questions but does not show answers using print.

  • 1

    Dear user, take the image and put your source code to improve future search of users with the same problem.

1 answer

1

You are doing an assignment on the line

print = (nome,idade,peso)

the correct is

print(nome,idade,peso)
  • 1

    ata thank you very much for the help,I could not understand why of not being working thank you very much

Browser other questions tagged

You are not signed in. Login or sign up in order to post.