Python - Comentario Prparer La Capitalización

string = "this is a string."  uppercasestring = string.upper()  print(uppercasestring)
thecodeteacher