Today in class I made a WordPress website.
I watched some YouTube video from someone teaching to python, I leaned some stuff that helped me understand and learn the things i was supposed to know by now
Link: Python for Beginners – Learn Coding with Python in 1 Hour – YouTube
To get points:
- An explanation of what you made
- Something you learned
- Screenshot
- Code snippets
- Links

#(comment)it converts weight (kg/lbs)
Weight = int(input("weight: "))
unit = input("(k)g or (L)bs? ")
if unit.upper() == "K":
converted = Weight / 0.45
print(f"Weight in lbs: " + str(converted))
else:
converted = Weight * 0.45
print(f"weight in kgs: " + str(converted))