Skip to content
#1. _______ have to be declared at the beginning of a code block and before any statements are given.
#2. _______ are declared on first assignment.
#3. The _____ statement removes a single reference to an object.
#4. A ____ block starts with indentation.
#5. ______ can be ignored in line continuation.
#6. ________ are very important while writing a program.
#7. _______ describes what’s going on inside a program so that a person looking at the source code does not have a hard time figuring it out.
#8. We use the ______ symbol to start writing a comment.
#9. A _________ is a location in memory used to store some data.
#10. We use the ________ operator to assign value to a variable.
#11. Every value in python has a _____
#12. _______ are actually classes and variables are instance of these classes.
#13. _______ types of interest are the python long and complex types.
#14. ______ numbers are not supported in many languages and perhaps are implemented only as class.
#15. ________ are identified as a contiguous set of characters in between quotation marks.
#16. ______ allows for either pairs of single or double quotes.
#17. We can use the ______ function to know which class a variable or a value belongs to.
#18. _________ function to check if an object belongs to a particular class.
#19. _______ can be of any length, it is only limited by the memory available.
#20. A _______ number is accurate up to 15 decimal places.
#21. _______ numbers are written in the form, x+yj.
#22. If x+yj, where x is the _____ part.
#23. If x+yj, where y is the _______ part.
#24. ______ is an ordered sequence of items.
#25. ______ is an ordered sequence of items same as list.