Question: Python: 1.Read a string and a width, wrap the string into a list of width. Sample Input : ABCDEFGHIJKLIMNOQRSTUVWXYZ . Sample Output : [ABCD, EFGH,

Python:

1.Read a string and a width, wrap the string into a list of width. Sample Input : ABCDEFGHIJKLIMNOQRSTUVWXYZ . Sample Output : [ABCD, EFGH, IJKL, IMNO, QRST, UVWX, YZ]

2, Use list comprehension to create a list of tuples of the first & last letters of every word in the string (at least 10 words long with special characters). Sample input: Good morning! How are you doing? Sample output: [(G, d), (m, g), (H, w), (a, e), (y, u), (d, g)]

Note: DO NOT use input().

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!