-
Notifications
You must be signed in to change notification settings - Fork 0
/
variable_names.py
142 lines (133 loc) · 2.52 KB
/
variable_names.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
from datetime import UTC, datetime
# `at` this represents a precise instant in time; but it contains NO INFORMATION
# about any particular timezone
at = datetime.now(UTC)
created_at = datetime.now(UTC)
updated_at = datetime.now(UTC)
last_active_at = datetime.now(UTC)
disbursed_at = datetime.now(UTC)
paid_at = datetime.now(UTC)
due_at = datetime.now(UTC)
deleted_at = datetime.now(UTC)
# `on` this represents a calendar date; no particular time of day OR timezone,
# per se
on = datetime.now(UTC)
created_on = datetime.now(UTC)
updated_on = datetime.now(UTC)
# a tzdb timezone
disbursementTz, disbursedAtTz, disbursedOnTz, tz
# a TTL, expressed as a number of milliseconds
accessTokenExpiresIn, expiresIn
# iso 24-hour time
createdAtTopOf, updatedAtTopOf, disbursedAtTopOf, atTopOf
# suffix, boolean
downloading, uploading, transloading, pdfDownloading, spooling, reticulating
results = 0
item_count = 0
total_sum = 0
user_input = 0
user_output = 0
status_flag = 0
i = 0
_length
object_list
number_value
boolean_flag
Mathematical and Scientific Variables
x_coordinate
y_position
z_value
iteration_index
pi_constant
euler_number
theta_angle
phi_angle
delta_change
epsilon_tolerance
sigma_standard_deviation
mu_mean_value
lambda_rate
gamma_gamma_function
alpha_alpha_value
beta_beta_value
rate_of_change
velocity_vector
acceleration_force
mass_kilograms
time_seconds
distance_meters
area_square_meters
volume_cubic_meters
temperature_celsius
pressure_pascals
current_amperes
voltage_volts
resistance_ohms
frequency_hertz
wavelength_meters
Database-Related Variables
record_id
item_name
item_description
creation_timestamp
modification_timestamp
is_active_flag
user_id_reference
category_id_reference
parent_item_id
item_order
quantity_in_stock
unit_price
total_price
shipping_address
city_name
state_province
country_name
postal_code
email_address
phone_number
user_password
user_name
first_name
last_name
date_of_birth
gender_identity
Web Development Variables
web_url
page_path
query_string_parameters
http_method
http_status_code
response_headers
request_body
http_response
http_session
web_cookie
user_agent_string
referrer_url
viewport_dimensions
screen_width_pixels
screen_height_pixels
Other Common Variables
file_name_string
file_path_string
file_size_bytes
file_type_extension
date_timestamp
time_in_seconds
timestamp_milliseconds
error_description
exception_message
result_value
success_flag
failure_flag
user_option
user_choice
application_setting
user_preference
configuration_data
execution_context
variable_scope
target_value
source_data
destination_value