-
Notifications
You must be signed in to change notification settings - Fork 0
/
makingCongrats.py
17 lines (16 loc) · 945 Bytes
/
makingCongrats.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
congo = ''' ****** ******* **** ** ******** ******* ** ********** ********
**////** **/////** /**/** /** **//////**/**////** **** /////**/// **//////
** // ** //**/**//** /** ** // /** /** **//** /** /**
/** /** /**/** //** /**/** /******* ** //** /** /*********
/** /** /**/** //**/**/** *****/**///** ********** /** ////////**
//** **//** ** /** //****//** ////**/** //** /**//////** /** /**
//****** //******* /** //*** //******** /** //**/** /** /** ********
////// /////// // /// //////// // // // // // //////// '''
congo = congo.replace("*", "B").replace("/", "G").replace(" ", "G")
congo = congo.split("\n")
output = ["G"*88]*40
for line in congo:
output.append(line)
for i in range(40):
output.append("G"*88)
print(output)