Skip to content

Commit 9535adb

Browse files
ADDED CLASS 22 | FINISHED
1 parent ceb2532 commit 9535adb

File tree

9 files changed

+63
-2
lines changed

9 files changed

+63
-2
lines changed

.idea/Código Backup.iml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Código Backup/.idea/.gitignore

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Código Backup/.idea/Código Backup.iml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Código Backup/.idea/inspectionProfiles/profiles_settings.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Código Backup/.idea/misc.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Código Backup/.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Código Backup/.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Mundo-03.py

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2059,4 +2059,22 @@ def titulo(msg, cor=0):
20592059
break
20602060
else:
20612061
ajuda(comando)
2062-
titulo("ATÉ LOGO!", 1)'''
2062+
titulo("ATÉ LOGO!", 1)'''
2063+
2064+
2065+
# CLASS 22
2066+
# MÓDULOS E PACOTES
2067+
2068+
'''# import uteis
2069+
# from uteis import fatorial, dobro
2070+
from uteis import numeros
2071+
2072+
2073+
num = int(input("Digite um número: "))
2074+
fat = numeros.fatorial(num)
2075+
dobro = numeros.dobro(num)
2076+
triplo = numeros.triplo(num)
2077+
print(f"O fatorial de {num} é {fat}")
2078+
print(f"O dobro de {num} é {numeros.dobro(num)}")
2079+
print(f"O triplo de {num} é {numeros.triplo(num)}")'''
2080+

0 commit comments

Comments
 (0)