daniel_sahal
Databricks MVP

@Shreyash_Gupta 
You can simply iterate over each letter of the secret and print it.
Something like this:

for letter in dbutils.secrets.get(scope_name,secret_name):
   print(letter)

View solution in original post