Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 325 Bytes

valid_names.md

File metadata and controls

13 lines (10 loc) · 325 Bytes

Valid Variable Names

  1. Which of the following is a valid variable name?
  • x - valid
  • x_and_y - valid
  • x_&_y - invalid
  • 2 - invalid
  • 2nd - invalid
  • _2 - valid
  • x-y - invalid
  1. True or False? If we defined a variable called var then, VAR is the same name as Python is not case-sensitive - False