2my_first_name ="John" correct this python statement
Answers
Answered by
0
Answer:
my_first_name = "John"
Explanation:
Any variable can't have first character as a numer
Answered by
1
- Correct the given python code.
Given code,
2my_first_name="John"
Since, variable names can't start with a number,so the code after correction will be
my_first_name="John"
Similar questions