Python - Some Basic Programs for beginners (a simple and quick read)I have executed the below programs on GitHub code space: ###String Concatenation str1="hello" str2="world" result=str1+" "+str2 print(result) ###String length str3="welcome" str4="to Python Club" result1=str3+" "+str4 length=len(result1) print("len...Nov 7, 2024·2 min read
Terraform vs Ansible (a simple and quick read)At the offset, it is important to understand the difference between Configuration Management Tool (CMT) and Infrastructure as Code(IAC) Tool. Ansible, Chef, Puppet etc. are Configuration Management Tools which are primarily designed to install and ma...Sep 29, 2024·1 min read