Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save DryLabRebel/41157ca378c0afdc78af354ebebdb413 to your computer and use it in GitHub Desktop.
Save DryLabRebel/41157ca378c0afdc78af354ebebdb413 to your computer and use it in GitHub Desktop.
Created on Skills Network Labs
Display the source blob
Display the rendered blob
Raw
{"cells":[{"cell_type":"markdown","metadata":{},"source":["<center>\n"," <img src=\"https://s3-api.us-geo.objectstorage.softlayer.net/cf-courses-data/CognitiveClass/Logos/organization_logo/organization_logo.png\" width=\"300\" alt=\"cognitiveclass.ai logo\" />\n","</center>\n"]},{"cell_type":"markdown","metadata":{},"source":["<h3 align=center>Comparison operations</h3> \n"]},{"cell_type":"markdown","metadata":{},"source":["Find the value of <code>i</code> that produces a <code>True</code> \n"]},{"cell_type":"code","execution_count":null,"metadata":{},"outputs":[],"source":["i=\n","i!=0"]},{"cell_type":"markdown","metadata":{},"source":["<details><summary>Click here for the solution</summary>\n","\n","```python\n","i = 1 \n","\n","#any value other than 0 will produce output as True\n","```\n","\n","</details>\n"]},{"cell_type":"markdown","metadata":{},"source":["<h3 align=center>Branching </h3> \n"]},{"cell_type":"markdown","metadata":{},"source":["Find the value of <code>x</code> that prints the statement: <code>\"this is a\"</code>\n"]},{"cell_type":"code","execution_count":null,"metadata":{},"outputs":[],"source":["x=\n","if(x=='a'):\n"," print(\"this is a\")\n","else:\n"," print(\"this is not a\")"]},{"cell_type":"markdown","metadata":{},"source":["<details><summary>Click here for the solution</summary>\n","\n","```python\n","x = 'a'\n","```\n","\n","</details>\n"]},{"cell_type":"markdown","metadata":{},"source":["<h3 align=center>Logic Operators</h3> \n"]},{"cell_type":"markdown","metadata":{},"source":["find the value of <code>y</code> that produces a <code>True</code> statement \n"]},{"cell_type":"code","execution_count":null,"metadata":{},"outputs":[],"source":["y=\n","x=1\n","x>0 and y<10"]},{"cell_type":"markdown","metadata":{},"source":["<details><summary>Click here for the solution</summary>\n","\n","```python\n","y = 0\n","\n","#any value less than 10 will produce output as True\n","```\n","\n","</details>\n"]},{"cell_type":"markdown","metadata":{},"source":["<hr>\n","\n","<h3 align=\"center\"> © IBM Corporation 2020. All rights reserved. <h3/>\n"]}],"metadata":{"kernelspec":{"display_name":"Python 3","language":"python","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.7.3"}},"nbformat":4,"nbformat_minor":2}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment