100 days of code Challenge!

·

1 min read

I made this account so I can track myself while I am a newbie that has a very basic amount of know-how with Python. I want to know where my limits are in learning this technical art and how I can break past them. I'm not the best at writing a blog yet so I'll keep it simple. I'm taking a course that encourages 1-2 hours of learning and practicing a day for 100 days. My goal is to do those 1-2 sessions a day.

Day 1:
Today was a refresher on working with variables using python. Solving problems like switching their values and displaying them.
Example: Print A and Print B with their inputs exchanged
a: = a
b: = b
I searched for this answer. Writing a line that sets them = to each other will solve this issue.
a, b = b, a
The other way was to add a third variable to allow a shuffle between variables to happen
c = a
a = b
b = c
Both options will exchange the variables before they are displayed with the print function!
print("a: =" a)
print("b: =" b)
Thats all I did for day 1 but its a lot more then I can say I did yesterday!