Skip to content

Latest commit

 

History

History
45 lines (37 loc) · 1.28 KB

README.md

File metadata and controls

45 lines (37 loc) · 1.28 KB

IT-Automation-with-Python

This is a six-course certificate, developed by Google and designed to teach how to program in Python and how to use Python to automate common system administration tasks, also manage version control with Git and GitHub, troubleshoot and debug complex problems and apply automation at scale by using configuration management and the Cloud. Learn to manage resources, troubleshoot real-world IT problems, and understand the power of automation, preparing you for advanced roles in IT support and system administration.

Courses:

  1. Crash Course on Python
  2. Using Python to interact with the Operating System
  3. Git and Github
  4. Troubleshooting and Debugging Techniques
  5. Configuration Management and the Cloud
  6. Automating Real-World tasks with Python

Operations, Methods, and Functions

String Methods, Operations, and Functions

.upper()
.lower()
.split()
.format()
.isnumeric()
.isalpha()
.replace()
string index [ ]
len()

List Operations and Methods

.reverse()
.extend()
.insert()
.append()
.remove()
.sort()

list comprehensions [ ]

list comprehensions [ ] with if condition

Dictionary Operations and Methods

.items()
.update()
.keys()
.values()
.copy()
dictionary[key]
dictionary[key] = value