-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathp2.py
More file actions
44 lines (38 loc) · 1.47 KB
/
p2.py
File metadata and controls
44 lines (38 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# p2.py
# Rishi Saravanan
# Python 3.11.9
# Description:
'''
Write a program that prints out "CS!" in large block letters inside a border of ***
followed by two blank lines then the message "Computer Science is Cool Stuf"
as shown below. Hint use print(" ") to show each line.
'''
print('************************************************')
print(' ')
print(' C C C S S S')
print(' C C S S')
print(' C S')
print(' C S')
print(' C S S S ')
print(' C S ')
print(' C S S')
print(' C C S S S')
print(' C C C ')
print(' ')
print('**************************************************')
print(' Computer Science is Cool Stuff!!')
'''
===================== RESTART: C:/Users/rishi/python/p2.py =====================
************************************************
C C C S S S
C C S S
C S
C S
C S S S
C S
C S S
C C S S S
C C C
**************************************************
Computer Science is Cool Stuff!!
'''