fixed broken spaces
This commit is contained in:
parent
1b8bf28bc9
commit
aeb7d2ff7d
6
main.py
6
main.py
|
@ -23,7 +23,11 @@ while True:
|
||||||
fin = letras.parsero(un_lyr)
|
fin = letras.parsero(un_lyr)
|
||||||
letra = fin.split('©', 1)
|
letra = fin.split('©', 1)
|
||||||
fin_lyr = letra[0]
|
fin_lyr = letra[0]
|
||||||
print(fin_lyr)
|
l = fin_lyr.split('\n')
|
||||||
|
for x in l:
|
||||||
|
if x[0] == ' ':
|
||||||
|
x = x.replace(' ', '\n', 1)
|
||||||
|
print(x)
|
||||||
while True:
|
while True:
|
||||||
print('<------------------------------------------------------------->')
|
print('<------------------------------------------------------------->')
|
||||||
res = input("What's the move? (s to search for another song/q to quit): ")
|
res = input("What's the move? (s to search for another song/q to quit): ")
|
||||||
|
|
Loading…
Reference in New Issue