Computer Science, asked by hemant6520, 11 months ago

how to write comments in a Python program​

Answers

Answered by AVANISH01
0

Answer:

your required answer is....

//*

Answered by shubham0204
6

Explanation:

Comments in Python are followed by a hash ( # ) symbol. The // symbol mentioned in the other answer is used in Java.

Here's an example.

a = 'Hello Python'

a = 'Hello Python'# This is a comment.

That should be easy.

Similar questions