d7af742f1fee405994cc82db8dd.../main.py
2025-01-21 11:04:59 +00:00

8 lines
171 B
Python

def print_name(name):
# Print the name
print("The name is:", name)
def main(request):
name = "Ali" # You can replace this with any name
print_name(name)