Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions 02_Day_Variables_builtin_functions/day_2/variables.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Day 2: 30 Days of python programming
first_name = 'Reece'
last_name = 'Brooker'
full_name = 'Reece Brooker'
country = 'England'
city = 'Peterborough'
age = 27
year = 1998
is_married = married
is_true = true
is_light_on = true
print(first_name)