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)
# code of this topic
String='The breakfast is ready'
S1=string [16:22];
Print (' The last six characters of string is:',S1)
Comments
Post a Comment