Skip to content

Commit 79f7c1d

Browse files
CHALLENGE 114 - STARTED AND COMPLETED
1 parent 5e62966 commit 79f7c1d

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

Mundo-03.py

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2190,7 +2190,7 @@ def titulo(msg, cor=0):
21902190

21912191
# CHALLENGE 113
21922192

2193-
def readInt(integer):
2193+
'''def readInt(integer):
21942194
try:
21952195
print(integer, end="")
21962196
intNum = input()
@@ -2232,4 +2232,20 @@ def readFlo(real):
22322232
floNum = readFlo("Enter with a real number: ")
22332233
# print(f"The integer value entered was {intNum} and the real was {floNum}")
22342234
# print(f"You have chosen the integer number: {intNum}")
2235-
# print(f"You have chosen the float number: {floNum}")
2235+
# print(f"You have chosen the float number: {floNum}")'''
2236+
2237+
2238+
# CHALLENGE 114
2239+
2240+
2241+
'''# import urllib
2242+
import urllib.request
2243+
2244+
try:
2245+
site = urllib.request.urlopen("http://pudim.com.br/")
2246+
# if(urllib.request.):
2247+
print("The site is access at the moment!")
2248+
except urllib.request.URLError:
2249+
print("The site isn't access at the moment!")
2250+
# except Exception as error:
2251+
# print(f"The ERROR found was ==> {error}")'''

0 commit comments

Comments
 (0)