Computer Science, asked by zayaanreshi, 5 hours ago

why cant we start a variable with a number in python​

Answers

Answered by OoINTROVERToO
1

Variable names cannot start with a digit, because it can cause some problems like below: int a = 2; int 2 = 5; int c = 2 * a; what is the value of c? is 4, or is 10!

Similar questions