Which symbol is used to write a multiple line comments in your Python program?
To comment out multiple lines in Python, you can prepend each line with a hash ( # ). Which symbol is used for multiple line comments? /* */ (multiline comment) Multiline comments are used for large text descriptions of code or to comment out chunks of code while debugging applications. Comments are ignored by the compiler. What is /* in …