Computer Science, asked by lokeshsinghbisht, 1 year ago

#computer science python program.
#can the following type of program can be made , if no plsss give any substitute.

g=input(enter yes or no(y/n))

if g==y:
print("thank you")
break

else:
print("....")
continue​

Answers

Answered by hackden
1

There are some errors in program

put inverted commas around input

also, if and else statements are intended

also, it will be g =="y" (put inverted commas)

Similar questions