Python with Stirng May 21, 2021 Add Comment Edit x = 'MICHAEL' x[0] = 'M' x[-1] = 'L' x[0:3] = 'MIC' x[::2] = 'MCAL' # it take every second variable... Read More
Error Categories in Python May 18, 2021 Add Comment Edit syntax: Language rule broken runtime: Unable to execute semantic: Unexpected output Division by zero is undefined Read More
Foobar May 10, 2021 Add Comment Edit 1- Braille Translation =================== Because Commander Lambda is an equal-opportunity despot, they have several visually-impaired mi... Read More
Dashboarding in Data Visualization May 04, 2021 Add Comment Edit Dashboard is useful for many reasons: - Real-time visuals - Understand business moving - Visually track, analyze, and display key perform... Read More
Model Evaluation and Refinement May 03, 2021 Add Comment Edit In sample evaluation tells us how our model performance using the training dataset, but how about using an unseen dataset(testing dataset)... Read More
Python_test May 02, 2021 Add Comment Edit 1- You’ve been given a list of the numbers between 0 and 10. We created this list using the range function! Create a new list named sq... Read More