Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started