write a python code to display last six characters of string "the breakfast is ready " to the console? Get link Facebook X Pinterest Email Other Apps November 25, 2020 # code of this topic String='The breakfast is ready' S1=string [16:22]; Print (' The last six characters of string is:',S1) Read more