Computer Science, asked by varsha05062006, 1 month ago

Write Python program to display the following output

a. This is my First Python Program

b. Display your Name

c. print statement which shows the use of single line comment and multi

line comment​

Answers

Answered by tanishqchhillar
0

Answer:

print("This is my First Python Program")

name=input ("Enter your name: ")

print("Your name is: ", name)

print('''Single line comments :- #hashtag

Multi line comments :- '''Triple quotes''' ''')

Similar questions