0
How to print semicolon without using semicolon
need to make a program in Python to print semicolon without using semicolon and ans is by using the ASCII value of semicolon but I m unable to write the code
2 Answers
+ 8
print(chr(59))
need to make a program in Python to print semicolon without using semicolon and ans is by using the ASCII value of semicolon but I m unable to write the code