You are on page 1of 6

2/6/2021 Answer in Python for Seth Cosmas Dacha #111646

(/)

(/submit)

94 870
Assignments Done
(/physics)
99%
Successfully Done
In January 2021 (/math)

(/programming)

Answer to Question #111646 in Python for Seth Cosmas Dacha


Answers (/homework-answers) > Programming & Computer Science (/homework-answers/programming-and-computer-science) >
Python (/homework-answers/programming-and-computer-science/python)

Question #111646

Example 1: Define a function that takes an argument. Call the function. Identify what code is the argument and what code is the paramete
r.

Example 2: Call your function from Example 1 three times with different kinds of arguments: a value, a variable, and an expression. Identif
y which kind of argument is which.

Example 3: Create a function with a local variable. Show what happens when you try to use that variable outside the function. Explain the
results.

Example 4: Create a function that takes an argument. Give the function parameter a unique name. Show what happens when you try to u
se that parameter name outside the function. Explain the results.

Example 5: Show what happens when a variable defined outside a function has the same name as a local variable inside a function. Expl
ain what happens to the value of each variable as the program runs.

Expert's answer

https://www.assignmentexpert.com/homework-answers/programming-and-computer-science/python/question-111646 1/6
2/6/2021 Answer in Python for Seth Cosmas Dacha #111646

def function(x): #x is param


print(x)
print(x)
print(x)

t1 = 1
function(9 - 1)
function('rufus')
function(1)

def fun_2():
loc = 228

# fun_2() if you run this code,


#print(loc) there will be an error, since the variable is local
def func_3(unical_param):
print('really unical')

func_3(1000)
#print(unical_param) if you run this code,there will be NameError
t1 = 7
def fun_4(t1):
print(t1)
#variable inside a function and a variable with the same name outside
# of it are two different variables
# and their values do not overlap or replace
fun_4(t1)

NEED A FAST EXPERT'S RESPONSE?


SUBMIT ORDER (/SUBMIT?
UTM_SOURCE=HOMEWORK&UTM_MEDIUM=BANNER&UTM_CAMPAIGN=SUBM

and get a quick answer at the best price


for any assignment or question with DETAILED EXPLANATIONS!

Learn more about our help with Assignments: Python (/programming/python)

Comments

No comments. Be first!

Leave a comment

Name

Email

Your comment (max 512 symbols)

Post

https://www.assignmentexpert.com/homework-answers/programming-and-computer-science/python/question-111646 2/6
2/6/2021 Answer in Python for Seth Cosmas Dacha #111646

I'm not a robot


reCAPTCHA
Privacy - Terms

Ask Your question

Name

Email

Programming & Computer Science

Python

Your question (max 1024 symbols)

Ask

I'm not a robot


reCAPTCHA
Privacy - Terms

Related Questions

1. In this assignment, you will draw a student schedule by using a while loop. You will ask the user (/homework-answers/programmin…

2. Create a code that plots 1000 random points each with their own random color on a user interface (/homework-answers/program…

3. Write a program that uses an initializer list to store the following set of numbers in an array name (/homework-answers/programmi…

4. Use the function written in the last lesson to calculate a student’s GPA. Ask them how many classe (/homework-answers/program…

5. please i need your help how did you come up with the answer and on how to code it please (/homework-answers/programming-an…

6. Using the string methods from Unit 7, write a program that asks the user to enter two words, change (/homework-answers/progra…

7. Where is the part of this code that flips the columns and how do I replace it with logic that flips (/homework-answers/programming-…

OUR FIELDS OF EXPERTISE

Programming (/programming)

Math (/math)

Engineering (/engineering)

Economics (/economics)

Physics (/physics)

Chemistry (/chemistry)

Biology (/biology)

(https://www.facebook.com/AssignmentExpert)(https://www.youtube.com/user/AssignmentExpert)
(https://twitter.com/solvingexpert)

https://www.assignmentexpert.com/homework-answers/programming-and-computer-science/python/question-111646 3/6
2/6/2021 Answer in Python for Seth Cosmas Dacha #111646

(/blog/assignment-expert-x/)

LATEST TUTORIALS

(https://www.youtube.com/watch?v=IkhqOW-Nq5s)

NEW ON BLOG

https://www.assignmentexpert.com/homework-answers/programming-and-computer-science/python/question-111646 4/6
2/6/2021 Answer in Python for Seth Cosmas Dacha #111646

(https://www.assignmentexpert.com/blog/how-to-make-your-hours-of-studying-productive/)
How to Make Your Hours of Studying Productive (https://www.assignmentexpert.com/blog/how-to-make-your-hours-of-
studying-productive/)
You may be familiar with the poignant phrase, “Work smarter, not harder.” Now, this could mean plenty of different things,…
(https://www.assignmentexpert.com/blog/how-to-make-your-hours-of-studying-productive/)

(https://www.assignmentexpert.com/blog/expert-tips-on-how-to-write-a-great-speech/)
Expert Tips on How to Write a Great Speech (https://www.assignmentexpert.com/blog/expert-tips-on-how-to-write-a-great-
speech/)
Palms are sweaty, knees weak, arms are heavy. Vomit on his sweater already, mom’s spaghetti. He’s nervous but on the…
(https://www.assignmentexpert.com/blog/expert-tips-on-how-to-write-a-great-speech/)

https://www.assignmentexpert.com/homework-answers/programming-and-computer-science/python/question-111646 5/6
2/6/2021 Answer in Python for Seth Cosmas Dacha #111646

(https://www.assignmentexpert.com/blog/how-to-optimize-your-winter-break-studying-routine/)
How to Optimize your Winter Break Studying Routine (https://www.assignmentexpert.com/blog/how-to-optimize-your-winter-
break-studying-routine/)
It’s the most wonderful time of the year! There’ll be much hollying and jollying, but there will also be plenty… (https://www.assignmentexpert.com/blog/how-to-
optimize-your-winter-break-studying-routine/)

APPROVED BY CLIENTS

Always good
#249738 on Feb 2020
Read all reviews >> (/reviews)

© 2021 BrainRouter LTD. All rights reserved.

(https://www.facebook.com/AssignmentExpert) (https://twitter.com/solvingexpert) (https://www.youtube.com/user/AssignmentExpert)

https://www.assignmentexpert.com/homework-answers/programming-and-computer-science/python/question-111646 6/6

You might also like