Untitled

mail@pastecode.io avatar
unknown
plain_text
16 days ago
254 B
1
Indexable
Never
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()
Leave a Comment