-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexercise_1.py
23 lines (20 loc) · 926 Bytes
/
exercise_1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
print(
'-----------------------------------------\n'\
'Practical python education || Exercise-1:\n'\
'-----------------------------------------\n'
)
print(
'Task:\n'\
'-----------------------------------------\n'\
'Write a Python program to print the following string in a specific format: "Twinkle, twinkle, little star, How I wonder what you are! Up above the world so high, Like a diamond in the sky. Twinkle, twinkle, little star, How I wonder what you are"\n'
)
print(
'Solution:\n'\
'-----------------------------------------\n'\
)
print('Twinkle, twinklem little star,\n\tHow I wonder what you are!\n\t\tUp above the world so high,\n\t\tLike a diamond in the sky.\nTwinkle, twinkle, little star,\n\tHow I wonder what you are')
print(
'\n-----------------------------------------\n'\
'Copyright 2018 Vladimir Pavlov. All Rights Reserved.\n'\
'-----------------------------------------'
)