Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.08 KB

2024-08-02-python_coding.md

File metadata and controls

36 lines (28 loc) · 1.08 KB
layout title date last_updated description tags categories featured
post
Python Variables
2024-08-04 12:38:10 -0700
2024-08-16 01:14:10 -0700
how to choose Python variables
python howto personalnote
python
false

draft

Python Variables

In this article:

"This article will give you all the understanding of Python variables you need to use them effectively in your projects."

"Download the Python variables cheatsheet"

country = "Germany"
federal_states = 16
  • "Variables in Python are case-sensitive.
    • in other words, watch your casing when creating variables,
    • because Year_Founded will be a different variable than year_founded even though they include the same letters"
  • "Variable names that use multiple words in Python should be separated with an underscore _
    • for example, a variable named "site name" should be written as "site_name"
    • this convention is called snake case (very fitting for the "Python" language)"