Python - Comentário Prparer la Capitalização

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