-
Notifications
You must be signed in to change notification settings - Fork 0
/
aula3.py
48 lines (36 loc) · 931 Bytes
/
aula3.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
'''
valor=input('Digite uma palavra: ')
print('o tipo primitivo e: ', type(valor))
print ('Tem espaço ?',valor.isspace())
print ( 'E um numero ?',valor.isnumeric())
print ('E alfabetico ?',valor.isalpha())
print ('E alfanumerico ?',valor.isalnum())
print ('Esta em Maiuscula ?',valor.isupper())
print ('Esta em Minuscula ?',valor.islower())
print ('A primeira letra e Maiuscula ?',valor.istitle())
-
texto='[email protected]'
print(texto.find('u'))
-
texto='[email protected]'
print(texto[3:])
-
idade=18
if idade >=18:
print('voce e de maior')
else:
print ('voçe e de menor')
-
salario = float(input('Digite seu salario'))
if salario >=5.000:
print('aumento de 10%')
else:
print('aumento de 5%')
-
n1 = int (input('Digite o primeiro numero: '))
n2 = int (input('Digite o segundo numero: '))
if n1==n2:
print ('Os dois mumeros sao iguais')
else:
print ('Os numeros sao diferentes')
'''