This is my experimenting code:
def settingValues():
  hi = "Hello"
  name = "Jake"
  isTrue = True
def callingValues():
  print(hi, name, isTrue)
settingValues()
callingValues()
Obviously this emmits an error... Is there an easy way to transfer the variables throughout the two functions? What I will be using this for requires setting quite a lot of variables... so I cant use 'global' for all of them. :)
 
     
    