In [1]:
a = input("do you like manga (yes/no) ?")
if a == "yes":
    print("thats so cool")
    c = input("what type of manga do you like? ")
    print(c, "is a great choice")
    d = input("there is a new manga coming out, do you want to hear about it ?")
elif a == "no":
    b = input("why?")
    x = input("well there is an upcoming manga i think you should try it out as it might change your opinion ")
else:
    print("invalid input, bye!")
thats so cool
lightning is a great choice
In [8]:
print("hello", end=", ")
print("how are you", end=" ")
print("doing today?")
hello, how are you doing today?