Does anyone know the way to create a series of strings in Python that are called consecutively ?
Like ‘ABCDEF’ and then first goes ‘A’, then ‘B’ then ‘C’ etc ? or you could call them from different point, like ‘D’ then ‘E’ then ‘F’ then ‘A’ etc
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For something that enables a start point, length, and “rotates” around the end, you can use:
(Take note of the slicing, the
.index()command and the handyascii_uppercaseconstant)