0
I've tried to output an integer in double quotes but it's not going, what could be the problem?
Example; print("let these be example: "36"")
4 Respostas
+ 1
Yet another way is to use the backslash to escape the double quote so it is not interpreted as a string delimiter.
print("example: \"36\"")
0
# Hi! Try:
print('let these be example: 36')
# or
print("let these be example:", 36)
# or if you want to print out the quotes:
print('let these be example: "36"')
0
Thank you guys I've solved the problem