- 5
Write a program that takes the text as input and outputs it by adding 3 stars at the beginning and the end.
Can you please send the code?
1 Answer
- 1
1.) Python
2.) x=input('hello')
print("*** "+x+ " ***")
y=input("python is awesome")
print("*** "+y+ " ***")
please tell me answer if u know