30-Days-Of-Python
30-Days-Of-Python copied to clipboard
30 days of Python programming challenge is a step-by-step guide to learn the Python programming language in 30 days. This challenge may take more than100 days, follow your own pace. These videos may...
Fix missing f in f-string
There are some duplicated exercises in Day 4 ([30-Days-Of-Python](https://github.com/Asabeneh/30-Days-Of-Python/tree/master)/[04_Day_Strings](https://github.com/Asabeneh/30-Days-Of-Python/tree/master/04_Day_Strings) /04_strings.md). 1. I believe exercise 23 and exercise 26 are nearly the same. > 23. Use index or find to **find...
- Resolved the issue of duplicate exercises by removing Exercise 27. - Updated the numbering of subsequent exercises to reflect the removal.
Update to lines 231-235: To convert a string representing a float to an integer, we should first convert the string to a float using the float() function, and then convert...