by the answer. Do not write the questions
1. State true or false.
(a) Datatype is like a container that can store a particular type of data
(b) "' is called the modulus operator.
(c) The file extension for a Python file is .py.
(d) 'upper()' is used to convert a text to uppercase
(e) We use 'input()' in Python to read the input.
Answers
Answered by
5
Answer :-
a.) True data types are container that can store a particular type of datas. In python common datatypes are integer, float, strings and booleans.
b.) False "' is not a modulus operator, in python % is used for modulus operator.
c.) True file extension of a python file is .py.
d.) True upper method, which is a built-in function is used to convert a string into uppercase.
e.) False input () is a built-in function which is used to take input from the user. In python 3, input () function by default take input as a string.
Similar questions