0
Write a program to add 3 stars at the beginning and the end of the notification text.
Please help me with this problem
5 Answers
+ 6
Hello Soham Dilipkumar Makwana ,
Yes we can help you but you have to show us what you have so far.
Basic DOs and DON'Ts of asking questions:
Ask about...
- Specific programming problems
- Software algorithms
- Coding techniques
- Software development tools
Don't ask about...
- Questions you haven't tried to find an answer for (show your work!)
- Product or service recommendations or comparisons
- Requests for lists of things, polls, opinions, discussions, etc.
- Anything not directly related to writing computer programs
0
Please can you move it to feed
0
quote = input ("enter a quote:")
print ("***" + quote + "***")
0
Taking User Input
quote = input ()
print ("*** " + quote + " ***")
Note, there are spaces between the stars and the text.
0
text=input("enter the text: ")
print("***"+ text +"***")