Escape Sequence in Python:
1) Suppose I want to display the output of 2 variable side by side with separated by a comma.
2) Suppose I want to display 2 print statement in single line then?
Accepting Input from Keyboard:
1) Input a single value.
2) Input a value in int data type.
3) Multiple input at once separated by space.
1) Suppose I want to display the output of 2 variable side by side with separated by a comma.
2) Suppose I want to display 2 print statement in single line then?
Accepting Input from Keyboard:
1) Input a single value.
2) Input a value in int data type.
3) Multiple input at once separated by space.
Comment’s in Python:
# : It is used represent single line comment.
‘‘‘ ’’’ : Multi-Line comment in python.