Question

Which of the following is not a Python 3 keyword? Select one: a. input b. or c. break d. True x
Which of the following is not an always-available built-in Python function? Select one: a. type b. input C. if d. str
0 0
Add a comment Improve this question Transcribed image text
Answer #1

hi, Python keywords are :

False, None, True, and, as, assert, async, await, break, class, continue, def, del, elif, else, except, finally, for, from, global, if, import, in, is, lambda, nonlocal, not, or, pass, raise, return, try, while, with, yield

you can check a list of all keyword available in python usign

import keyword

print(keyword.kwlist)

input is not a keyword rather it is a function in pyhton

type(): is a function that return the class type of the argument of argument object

input(): is afunction that allow user to to input at runtime

if: if is not a function rather a keyword use to make decision in our program it works as

if condition:

     #satements tobe executed if condition is true

str(): is a function that converts the argument providede to it to a string class

Add a comment
Know the answer?
Add Answer to:
Which of the following is not a Python 3 keyword? Select one: a. input b. or...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT