Skip to content
View Mrpickles-666's full-sized avatar
☠️
Focusing
☠️
Focusing
  • Space

Block or report Mrpickles-666

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Estrutura de repetição sem aquisição... Estrutura de repetição sem aquisição do número 3
    1
    x = 0
    2
    while x <= 10:
    3
        if x == 3:
    4
            x = x + 1
    5
            continue
  2. Ao digital um valor inicial e final ... Ao digital um valor inicial e final retorna a soma e a médias dos números.
    1
    #Valores de entrada
    2
    inicio = int(input('Qual é o valor inicial: '))
    3
    final = int(input('Qual é o valor final'))
    4
    #Variáveis de entrada com suas quantidade e somas
    5
    qtd_positivo = 0
  3. tabuado_1ao10.py tabuado_1ao10.py
    1
    tabuada = 1
    2
    while tabuada <= 10:
    3
        print('Tabuada do: {}'.format(tabuada))
    4
        i = 1
    5
        while i <= 10:
  4. for_rep2.py for_rep2.py
    1
    for i in range(10, -1, -1):
    2
        print(i)
    3
        if i == 0:
    4
            print('Fire!')
  5. truthy_falsey.py truthy_falsey.py
    1
    soma = 0
    2
    qtd_num = 0
    3
    x = 0
    4
    while True:
    5
        x = int(input('Digite um valor inteiro: '))
  6. tabuada_for_1ao10.py tabuada_for_1ao10.py
    1
    for tabuada in range(1, 11, 1):
    2
        print('TABUADA DO {}:'.format(tabuada))
    3
        for i in range(1, 11, 1):
    4
            print('{} X {} = {}'.format(tabuada, i, tabuada * i))