myString = "God is good" if "o" in myString[0:4] print("Working! There is an 'O' in between the G and D of God.")
yourString = "string" if "s" in yourString: print("There is an S in your string") if "s" not in yourString: print("There is no S in your string")
if '$' in myString: