Python Syntax Rules & Hello World Program
Python Syntax Rules: Here are a few things you should know beforehand: Python is case-sensitive, which means, for example, Name and name have different meanings The standard is to use English names in programming All variables should start with a lowercase letter, for example, var = 4 Functions begin with lowercase Classes begin with a capital letter There is no command […]
November 12, 2022 | python | No comments