Posts

Showing posts from November, 2020

write a python code to display last six characters of string "the breakfast is ready " to the console?

# code of this topic String='The breakfast is ready' S1=string [16:22]; Print (' The last six characters of string is:',S1)