Answered step by step
Verified Expert Solution
Question
1 Approved Answer
**python** this code work s for the input 1.aaaaaaaaaaaaa 2.bbbbbbbbbbbbb 3.ccccccccccccc 4.ddddddddddddd print('give entries of form A ') for i in range(n): s =input().split('.')
**python**
this code work s for the input
"1.aaaaaaaaaaaaa
2.bbbbbbbbbbbbb
3.ccccccccccccc
4.ddddddddddddd
"
print('give entries of form A ')
for i in range(n):
s =input().split('.')
formA.append((int(s[0]),s[1]))
i want to change it to work for the input
"
1
aaaaaaaaaaaaa
2
bbbbbbbbbbbbb
3
ccccccccccccc
4
ddddddddddddd
"
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started