8 lines
171 B
Python
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)
|