how to add given character, word or string to final line
this is my code I think code is good what I'm trying to accomplish is regardless of what kind of results "Moon" shows on end of line. I may have final result "super blue blood" or "super blue" it mast be displaing on single line and 'Moon' appearing on end of line just one time. Thank You moon_1="Super" moon_2="Blue" moon_3="Blood" #Add your code here! if phase=="Full": if distance<230000: print("Super",end=" ") if date==29 or date==30 or date==31: print("Blue",end=" ") if eclipse==1: print("Blood",end=" ") else: if date==29 or date==30 or date==31: print("Blue",end=" ") if eclipse==1: print("Blood") else: print("Moon")