Posts

Showing posts from March, 2021

Python - Random Program

Image
Random program: # comments  from random import random #we are importing random from random module def flip_coin(): r = random() #assigning the random value to r if r > 0.5: #if value is greater than 0.5 then  return "Heads" else: return "tails" print(flip_coin()) # print the output . we need to call the function , hence flip_coin() with parenthesis. output:

Journey Begins for Network Automation and or Devops Profile

There are lot of job role we can plan . However when you try to apply for new profile , there is no straight path. There are various paths which one could take and each and every company has different requirements. For me i wanted to work for Network automation profile or Network Devops or devops role. Hence i started to learn what both the terms mean . Went Through news , articles jobs . ( did not understand anything when i first read it ). Later stages , i got used to the terms and path . Also had uploaded resume with all the various combination . So :  1 - Network Automation - This involved Python and Ansible with Networking . 2 - Devops - This involved cloud ( AWS, GCP , Azure ) , Jenkins, docker, Ansible etc. So as it was common for both the profiles, started python and ansible . 1 - Learning from Udemy - Python Boot camp - by Colt Steel https://www.udemy.com/course/the-modern-python3-bootcamp/ 2 - learning interview questions for python and ansible a - Python  b - Ansibl...