File tree 1 file changed +18
-2
lines changed
1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -2190,7 +2190,7 @@ def titulo(msg, cor=0):
2190
2190
2191
2191
# CHALLENGE 113
2192
2192
2193
- def readInt (integer ):
2193
+ ''' def readInt(integer):
2194
2194
try:
2195
2195
print(integer, end="")
2196
2196
intNum = input()
@@ -2232,4 +2232,20 @@ def readFlo(real):
2232
2232
floNum = readFlo("Enter with a real number: ")
2233
2233
# print(f"The integer value entered was {intNum} and the real was {floNum}")
2234
2234
# 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}")'''
You can’t perform that action at this time.
0 commit comments