Skip to content
Open
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
2 changes: 1 addition & 1 deletion 03_Day_Operators/day-3.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# Declaring the variable at the top first

a = 3 # a is a variable name and 3 is an integer data type
b = 2 # b is a variable name and 3 is an integer data type
b = 2 # b is a variable name and 2 is an integer data type

# Arithmetic operations and assigning the result to a variable
total = a + b
Expand Down