Fundamentals-of-python-august-2021 icon indicating copy to clipboard operation
Fundamentals-of-python-august-2021 copied to clipboard

Week 2

  • Strings
  • Logical Operator
  • Conditioal
  • List
  • Loops

What is the fundamental of Programming

  • Built-in Functions -> print('hello', 'world', 2021, ['HTML', 'CSS','Python']), input('Enter age:'), round(9.81)
  • Variables => a = 10, b = 20 c = a + b
  • Operations: +, -, *, /, %, //, **
  • Comparison >, >=, ==, !=, <, <=
  • Logical and, or, not 2 > 1 and 4 > 3
  • Data types Numbers(int, float, complex), String, Booleans, List, Tutple, dictionary
  • Condition
  • List, Set, Tuple, Dictionary
  • Loop(0 - 1000)
  • Functions- maintainble, scalable, testable, reusable code

Topics: List Comprehension Function revision, Lambda function, Higher order function and -Modules