Bootstrap

Python-代码输入一段字符串大小写转换(第六天)

||a program that accepts sequence of lines as input and prints the lines after making all characters in the sentence capitalized.
||一种程序,它能接受行序列作为输入,并在把句子中的所有字符输出为大小写转换

在这里插入图片描述

sentence = input("enter the statement:")
for i in range(len(sentence)):
    if 
;