PCS
How do you insert COMMENTS in Python code?
#This is a comment
Which of these collections defines a TUPLE?
("apple", "banana", "cherry")
Which operator is used to multiply numbers?
*
What is the correct file extension for Python files?
.py
Which operator can be used to compare two values?
==
Python can be used to write Java Scripts when there is no Java compliler available.
False
Which collection is ordered, changeable, and allows duplicate members?
LIST
The PHP syntax is most similar to:
Perl and C
Which collection does NOT allow duplicate members?
SET
In Python, 'Hello', is the same as "Hello"
True
Which of these collections defines a LIST?
["apple", "banana", "cherry"]
What is the correct way to create a function in Python?
def myFunction():
How do you start writing a for loop in Python?
for x in y:
Which one is NOT a legal variable name?
my-var
What is a correct syntax to output "Hello World" in Python?
print("Hello World")
What is the correct syntax to output the type of a variable or object in Python?
print(type(x))
Which method can be used to replace parts of a string?
replace()
Which method can be used to remove any whitespace from both the beginning and the end of a string?
strip()
Which method can be used to return a string in upper case letters?
upper()
What is a correct syntax to return the first character in a string?
x = "Hello"[0]"
How do you create a variable with the numeric value 5?
x = int(5) x = 5
Which of these collections defines a SET?
{"apple", "banana", "cherry"}
Which of these collections defines a DICTIONARY?
{"name": "apple", "color": "green"}