Untitled

andresevero avatar
andresevero
plain_text
01/17/2025 7:10 PM
344 B
14
Indexable
import time


def PensarPor10Segundos():
    print('pensando')
    time.sleep(10)
    print('Lembrei!')


if 10 > 5:
    print('10 é maior que 5')

class BemVindo():
      def __init__(self):
        print('Bem vindo')

oi = BemVindo()

Editor is loading...
Leave a Comment