Hello I am new in Python and maybe it is stupid question but can you help me with this code?
while True:
k = int(input("type: "))
l = k % 2
if l==0:
print("luwi")
elif l != 0:
print("kenti")
i want to add elif where is said that if k == "exit" code breaks how make system to read not only integers but strings as well?or it is impossible? P.s I am very new in python :D