Last active
December 26, 2024 19:35
-
-
Save g8d3/e7bb96cde55b406603c6b314239ce12c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
def ping_website(url): | |
try: | |
response = requests.get(url, timeout=5) | |
if response.status_code == 200: | |
return f"{url} is reachable." | |
else: | |
return f"{url} returned status code {response.status_code}." | |
except requests.ConnectionError: | |
return f"Failed to reach {url}." | |
except requests.Timeout: | |
return f"Request to {url} timed out." | |
except Exception as e: | |
return f"An error occurred: {str(e)}" | |
# Example usage | |
# ping_website("http://www.google.com") | |
r = ping_website("http://www.google.com") | |
# print(r) | |
def calculate_sum(a, b): | |
return a + b | |
# Define variables | |
x = 10 | |
y = 20 | |
# Call the function with the variables | |
result = calculate_sum(x, y) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment