Posts by P. Azap • 1 point
3 posts
-
0
votes1
answer42
viewsQ: What kind of pointer is that?
I have the Following Code: int main() { string animal = "cabrito"; string &pn = animal; pn = "bode"; cout << animal << endl; return 0; } That generates the output: goat I was very…
-
-2
votes1
answer48
views -
2
votes4
answers82
viewsQ: How do I create a list for possible answers in python?
Well... I wanted to make a list for possible user responses to input, for example: nom = str(input('Você gosta de mim? ')) lista = ['sim','claro','obvio'] if nom == lista: print('obrigado, bom…