Sneaky Conversation in Python | Assignment Expert

Problem Statement:

In the problem of Sneaky conversation in python, we need the string to sneaky form. We need to create a sneaky-like form from the string with substrings having maximum length of n.

Code for Sneaky Conversation in Python:

s = 'COPYASSIGNMENT'
n = 4
myListStr = [s[0:2]]
last = s[-2:]
lastSecond = s[-6:-2]
s = s[2:-6]
for i in range(0, len(s),n-1):
    myListStr.append(s[i:i+3])
myListStr.append(lastSecond)
myListStr.append(last)
for i in myListStr:
    print(i)

Output:

Sneaky Conversation in Python

Also Read:

Share:

Author: Harry

Hello friends, thanks for visiting my website. I am a Python programmer. I, with some other members, write blogs on this website based on Python and Programming. We are still in the growing phase that's why the website design is not so good and there are many other things that need to be corrected in this website but I hope all these things will happen someday. But, till then we will not stop ourselves from uploading more amazing articles. If you want to join us or have any queries, you can mail me at admin@copyassignment.com Thank you