Revision 1

1234567891011121314
Across
  1. 2. A function to create a dictionary where all keys have the same value.
  2. 3. In Python, a variable can be made to point to a different value/object as it is _________ typing.
  3. 5. The special literal indicating the absence of a value.
  4. 6. A mutable group of comma-separated values of any datatype.
  5. 8. The smallest individual unit in a program.
  6. 9. The name of the function to retrieve the value associated with a particular key in a dictionary.
  7. 11. The factorial() in math module returns _____Error if the argument is negative.
  8. 13. &,|,^ are classified as ___________ operators.
  9. 14. ____________ is an example of a jump statement.
Down
  1. 1. Explicit conversion is also called Type _________.
  2. 3. The statement used to remove an individual item or to remove all items identified by a slice.
  3. 4. Boolean values are a subtype of ________ datatype.
  4. 7. The name of the function where a new version of the string is returned where words start with an uppercase and remaining characters as lowercase.
  5. 10. The output of "HelloHelloHowareyou".lstrip("Helo")
  6. 12. capwords() is a part of _______ module.