Computer Science, asked by saumyashah1980, 3 months ago

QUESTION IS FROM PYTHON

Print “orl” from the given text:
INDEX

CHAPTER-1 Define the Terms 2
CHAPTER-2 Fill in the Blanks 5
CHAPTER-3 Error Solving 9
CHAPTER-4 Code Formation 11
CHAPTER-5 Capstone Project 14
























Chapter-2 Fill in the blanks

1) Python was created by ______________, and released in 1991.
2) Python can be used alongside software to create _____________.
3) Python can connect to database systems. It can also _____________ files.
4) Used to handle big data and perform _______________.
5) Python can do ______________, or for production-ready software development.
6) Python works on _____________ (Windows, Mac, Linux, Raspberry
Pi, etc.).
7) Python has a ________ syntax similar to the English language.
8) Python has syntax that allows developers to write programs with _____________ than some other programming languages.
9) Python runs on an interpreter system, meaning that code can be ________ as soon as it is __________. This means that prototyping can be very quick.
10) Python can be treated in a ___________, an object-orientated way or a functional way.
11) Version 3 is being used for Python rather than version 2 due to ______________.
12) Syntax of print function is: _______________.
13)To print multiple lines, we need to ____________ at starting and at end.
14) In print function you can use ______ quotes or _________ quotes for printing the message.
15) Syntax of input function is: ________________.
16) Python stops executing when it comes to the ____________ function and continues when the user has given some input.
17) ______________ are containers for storing data values.
18) A variable name cannot start with a __________.
19) A variable name can only contain _____________ and underscores (A-z, 0-9, and _)
20) Variable names are ____________.
21) Variables can store data of different types, and different types can do different things known as _____________.
22) The by-default data type in python is _______________.
23) ___________ can be used to explain Python code.
24) Comments can be used to make the code more ___________.
25) Comments can be used to prevent __________ when testing code.
26) Comments starts with a _______, and python will ignore them.
27) __________ literals in python are surrounded by either single quotation marks, or double quotation marks.
28) Indexing in python always starts from ________.
29) Boolean data type will always give answer in either _________ or ___________.
30)Python relies on ____________ (whitespace at the beginning of a line) to define scope in the code.
31) The ___________ keyword catches anything which isn't caught by the preceding conditions.
32) Floor division will always give you answer in ____ datatype and Division will always give you answer in _____ data type.
33) ___________ is a collection which is ordered and changeable.
34) In List, to add an item at the specific index, use __________ method.
35) A tuple is a collection which is ___________ and ____________.
36) A list has a ____________ while a tuple has a ____________.
37) A set is a collection which is ___________ and _______________.
38) The set list is unordered, meaning: the items will appear in a___________ order.
39) A ____________ is a collection which is unordered, changeable and indexed.
40) The ______________ loop we can execute a set of statements as long as a condition is true.
41) A for loop is used for iterating over a ____________.
42) A ___________ is a block of code which only runs when it is called.
43) You can pass data, known as ____________, into a function.
44) Parameter is the variable listed _________ the parentheses in the function definition.
45)An __________ is the value that is sent to the function when it is called.

Answers

Answered by danger7537
4

Answer:

QUESTIONS IS FROM PYTHON

Change an item in tuple:

a=33

b=200

if b>a

print("b is greater than a") your

Similar questions