diff --git a/02_Day_Variables_builtin_functions/day_2/variables.py b/02_Day_Variables_builtin_functions/day_2/variables.py new file mode 100644 index 000000000..5d58c4ba6 --- /dev/null +++ b/02_Day_Variables_builtin_functions/day_2/variables.py @@ -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)