Codigos Dos Exercicios Strings Python

Enunciados dos Exercicios de Strings
Exercicio 1

# Problem Set "Strings"
# Fonte: http://www.python.org.br/wiki/ExerciciosComStrings
# Exercicio 1
# Name: Diego Tostes
# Time: 05'00"
 
str1 = raw_input("digite a primeira string ---> ")
str2 = raw_input("digite a segunda string ---> ")
numStr1 = len(str1)
numStr2 = len(str2)
 
print "Compara duas strings"
print "Sting 1 : "+str1
print "Sting 2 : "+str2
print "Tamanho de \""+str1+"\" eh --->",numStr1,"caracteres"
print "Tamanho de \""+str2+"\" eh --->",numStr2,"caracteres"
if numStr1 != numStr2:
    print "As duas strings sao de tamanhos diferentes.\nAs duas strings possuem conteudo diferente."
elif str1 == str2:
    print "As duas strings sao iguais!"

Exercicio 2
# Problem Set "Strings"
# Fonte: http://www.python.org.br/wiki/ExerciciosComStrings
# Exercicio 2
# Name: Diego Tostes
# Time: 03'00"
 
nome = raw_input("digite seu nome ---> ")
nomeInvert = ""
i = len(nome) - 1
while i >= 0:
    nomeInvert = nomeInvert+nome[i:i+1]
    i = i - 1
print nomeInvert.upper()

Exercicio 3
# Problem Set "Strings"
# Fonte: http://www.python.org.br/wiki/ExerciciosComStrings
# Exercicio 3
# Name: Diego Tostes
# Time: 02'00"
 
nome = raw_input("digite seu nome ---> ")
i = 0
while i <= len(nome):
    print nome[i:i+1]
    i = i + 1

Exercicio 4
# Problem Set "Strings"
# Fonte: http://www.python.org.br/wiki/ExerciciosComStrings
# Exercicio 4
# Name: Diego Tostes
# Time: 02'00"
 
nome = raw_input("digite seu nome ---> ")
i = 1
while i < len(nome) + 1:
    print nome[0:i]
    i = i + 1

Exercicio 5
# Problem Set "Strings"
# Fonte: http://www.python.org.br/wiki/ExerciciosComStrings
# Exercicio 5
# Name: Diego Tostes
# Time: 02'00"
 
nome = raw_input("digite seu nome ---> ")
i = len(nome)
while i >= 0:
    print nome[0:i]
    i = i - 1

voltar
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License