Copy the app link with current input parameters. They will be displayed in the URL.
If a user visits the app, it will run automatically, using the input parameters from the URL.
# Start writing code here...
full_name = input("Input your first and last name: ")
space_index = full_name.find(" ")
name = ""for letter in full_name:
if letter.isalpha():
name += letter
else:
print(name)
name = ""