程式碼#字串元素反轉程式 list1 = input('請輸入英文句子:') words = list1.split() temp = words[::-1] print(' '.join(temp)) #將串列合併成字串三、程式碼解說○第 ...
確定! 回上一頁