Character Traker
https://pytwiddle.com?source=def+text_analyzer%28text%29%3A%0D%0A++++%23+Count+characters%0D%0A++++characters+%3D+len%28text%29%0D%0A++++%0D%0A++++%23+Count+words%0D%0A++++words+%3D+len%28text.split%28%29%29%0D%0A++++%0D%0A++++%23+Count+sentences+%28basic+method%29%0D%0A++++sentences+%3D+text.count%28%27.%27%29+%2B+text.count%28%27%21%27%29+%2B+text.count%28%27%3F%27%29%0D%0A++++%0D%0A++++%23+Estimate+reading+time+%28200+words+per+minute%29%0D%0A++++reading_time+%3D+words+%2F+200%0D%0A++++%0D%0A++++print%28%22%5CnText+Analysis+Results%3A%22%29%0D%0A++++print%28%22----------------------%22%29%0D%0A++++print%28%22Characters%3A%22%2C+characters%29%0D%0A++++print%28%22Words%3A%22%2C+words%29%0D%0A++++print%28%22Sentences%3A%22%2C+sentences%29%0D%0A++++print%28%22Estimated+Reading+Time%3A+%7B%3A.2f%7D+minutes%22.format%28reading_time%29%29%0D%0A%0D%0A%0D%0A%23+MAIN+PROGRAM%0D%0Aif+__name__+%3D%3D+%22__main__%22%3A%0D%0A++++user_text+%3D+input%28%22Enter+your+text%3A%5Cn%22%29%0D%0A++++text_analyzer%28user_text%29
