slides06-ex1.py
Click here to get the file
Size
1 kB
-
File type
text/python-source
File contents
s1 = raw_input("Digite a 1a string: ")
s2 = raw_input("Digite a 2a string: ")
print "O tamanho de %s é %d"%(s1, len(s1))
print "O tamanho de %s é %d"%(s2, len(s2))
if len(s1) == len(s2):
print "As duas strings possuem o mesmo tamanho"
if s1 == s2:
print "O conteúdo das duas strings é idêntico"
else:
print "As duas strings possuem conteúdo diferente"
else:
print "As duas strings possuem tamanhos diferentes"
print "As duas strings possuem conteúdo diferente"