Python Variable Example using lowercase , uppercase, digit and underscore


Variable can contain a combination of letters in lowercase (a to z) or uppercase (A to Z) or digits (0 to 9) or an underscore (_).

Program
a_A1=10 print(a_A1)
Input
Output