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
Get step-by-step solutions from verified subject matter experts
