Skip to content

Instantly share code, notes, and snippets.

@roman-on
roman-on / PY0101EN-1-1-Types.ipynb
Created November 10, 2019 23:57
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@roman-on
roman-on / PY0101EN-1-2-Strings.ipynb
Created November 15, 2019 04:47
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@roman-on
roman-on / PY0101EN-2-1-Tuples.ipynb
Created November 18, 2019 03:34
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@roman-on
roman-on / PY0101EN-2-2-Lists.ipynb
Created November 19, 2019 01:50
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@roman-on
roman-on / PY0101EN-2-3-Sets.ipynb
Created November 20, 2019 03:03
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@roman-on
roman-on / PY0101EN-2-4-Dictionaries.ipynb
Created November 22, 2019 01:28
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@roman-on
roman-on / PY0101EN-3-1-Conditions.ipynb
Created November 25, 2019 00:21
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@roman-on
roman-on / PY0101EN-3-2-Loops.ipynb
Created November 26, 2019 02:19
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@roman-on
roman-on / PY0101EN-3-3-Functions.ipynb
Created December 2, 2019 03:12
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@roman-on
roman-on / gist:a0c719b9a5a07208da9ff1d36f87bafc
Created April 3, 2020 02:22
Convert Celsius to Fahrenheit and vise versa
# 50F 50f = 10C 10c
temp = str(input("Insert the temperature you would like to convert:"))
a = int(temp[:-1]) # num
b = temp[-1:] # c / C
c = int(temp[:-1]) # num
d = temp[-1:] # f / F