Aula 09 - curso em video python part 01
an anonymous user
·
Python
frase = 'Curso em Video Python!'
print ('*'.join(frase[3:13]))
frase = 'Curso em Vídeo python !'
print(frase[9:21:2])
#print(\next) - <br>
frase = 'Curso em vídeo pytohn !'
print(frase[:5])
frase = 'Curso em video python !'
print (frase[15:])
frase = 'Curso em video python'
print (frase[9::3])
print ('-'*30)
#------------------------------------------------------
#Analise de string (como começa, termina)
frase = 'Curso em video python'
print (len(frase))
frase = 'curso em video python'
print (frase.split())
Output
Embed on website
To embed this program on your website, copy the following code and paste it into your website's HTML:
Comments
This comment belongs to a banned user and is only visible to admins.
This comment belongs to a deleted user and is only visible to admins.