Question: Q 1 . Creating variables ( 6 pts . total ) In this first part of the problem set, your goal is to create variables
Q Creating variables pts total
In this first part of the problem set, your goal is to create variables of different types, with different values.
In the cell below, create the following variables make sure to use the right name for each variable:
A variable called myint that stores the number
A variable called myint that stores the number
A variable called mystr that stores the string "Problem Set
A variable called mybool that stores the boolean value True
A variable called myotherbool that stores the boolean result of checking whether myint myint
A variable called mynothing that stores None.
In :
# YOUR CODE HERE
In :
assert myint
assert myint
In : assert myint
assert myint
In : assert mystr
assert mystr "Problem Set
In : assert mybool
assert mybool True
In : assert myotherbool False
In : assert mynothing is None
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
