Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to write def

my_name = 'Seymon'

def print_name():
    print('the name inside the function is', my_name)

def print_my_name():
    global my_tao_name
    my_tao_name = 'Jayden'
    print('my name inside the function is', my_tao_name)


def printa():
    global a
    a = 'James'
    print('hello', a)

printa()
print('hello,', a,'you look much better. How is', my_tao_name 'and', my_name '?')
 
PREVIOUS NEXT
Tagged: #write #def
ADD COMMENT
Topic
Name
3+9 =