a=input() a=input() c = a + b print(c[::-1])修改
时间: 2023-05-15 07:07:19 浏览: 79
atoms-symbol = input("请输入HEA所含的元素种类:\n") atoms-symbol = atoms-sy
这段代码有一些问题,正确的代码应该是:
a = input()
b = input()
c = a + b
print(c[::-1])
这段代码的作用是将用户输入的两个字符串拼接在一起,然后将拼接后的字符串反转输出。
阅读全文