165k views
5 votes
Can give verb 12345 list don't give 123 list​

User Ibocon
by
6.7k points

2 Answers

3 votes

Answer:

Here is the list of verbs if that's what you need

Step-by-step explanation:

1. Accept

2. Ask

3. Explain

4. Give

5. Pay

User Lilshieste
by
5.7k points
4 votes

Answer:

SOURCE CODE

#reverseing digits of each elements in a list

a=eval(input('Enter the list of numbers:'))

l=len(a)

for i in range (l):

b=0

while a[i]!=0:

b=b*10+a[i]%10

a[i]=a[i]//10

a[i]=b

print()

print('List after reversing digits of each elements of list is:','\\')

print(a)

OUTPUT

Enter the list of numbers: [123, 586, 947]

List after reversing digits of each elements of list is:

[321, 685, 749]

>>>

Enter the list of numbers: [1234,789, 4567]

List after reversing digits of each elements of list is:

[4321, 987, 7654]

>>>

Step-by-step explanation:

User Kewei Shang
by
6.9k points