My First Jupyter Notebook with Python Examples
This is my first experience in coding and it is pretty tough. But I hope to learn a lot in this class and learn how to be more creative in coding. update?
msg = "Hello people"
print(msg)
print(1+1)
msg = "yo mom"
print(msg)
a=1
b=30
print(b-a)
a=1
while (a < 10):
print('hey guys', a)
if(a==9):
print('BYE GUYS! :)')
a=a+1
print("Hello Docker!")
langs = ["Python", "Javascript", "Java", "Bash"]
langs[2]