Python Programming Flashcards
What is a string in Python?
A sequence of characters surrounded by quotation marks.
Which of the following is an integer?
“123”
123
12.3
‘123’
123
How do you print the phrase “Hello, World!” in Python?
print(“Hello, World!”)
Which symbol is used for multiplication in Python?
*
What will print(“Fish”, 4) output?
Fish 4
What does the \n character do in a print statement?
It creates a new line.
What is the correct way to assign a string to a variable named ‘animal’ and print it in Python?
animal = “Cat”; print(animal)
How do you concatenate a variable a with a string “ is great” in a print statement?
print(a + “ is great”)
Which of the following correctly reads input from the user and stores it in a variable named user_age as an integer?
user_age = int(input(“Enter your age:”))
What will len(“Python”) return?
6
How do you start a comment in Python?
Comment
Which operator checks if two values are equal?
==
What is the result of 10 != 10?
False
What does the following code snippet do? if x > 10: print(“Big”) else: print(“Small”)
Prints “Big” if x is greater than 10, otherwise prints “Small”.
What will print(“Hello”[1]) output?
e
Which of the following is used to create a new list in Python?
{}
[]
()
||
[]
What does the append() method do in Python?
Adds an element to the end of a list.
How do you print the number of items in a list numbers?
print(len(numbers))
What does the input() function return?
A string
How do you remove an element from a list in Python?
list.pop()
Which function converts a string into an integer?
int()
What will print(2 > 3) output?
False
How do you check if two variables a and b contain the same value?
if a == b:
What is the result of adding two lists in Python: [1, 2] + [3, 4]?
[1, 2, 3, 4]
What does the input() function do?
Reads a line of text from the user input.
For Python lists, what does the index number indicate?
The position of an element in the list, starting at 0.