Ответ:
a = '142'
b = []
for i in a:
b.append(i)
print(f'Число а = {a}')
temp = b[-1]
b.pop()
b.insert(0, temp)
print(f"Число b = {''.join(b)}")
Объяснение:
Python
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
a = '142'
b = []
for i in a:
b.append(i)
print(f'Число а = {a}')
temp = b[-1]
b.pop()
b.insert(0, temp)
print(f"Число b = {''.join(b)}")
Объяснение:
Python