#basics

Pubblicato il: 24 settembre 2024
sul canale di: Mastering Technology
113
10

Basics of Python Programming:

1. Indentation
Whitespace is used at the beginning of the line to define the block.

2. Conditions - If/elif/else

3. Loops
While and For loop. Do-while is not used in Python.

4. Range() Function
It returns a sequence of numbers starting from 0 by default and incrementing by 1 (by default) and stops before a specified number.
range(start, stop, step)

5. Difference between break and Continue Statement

The break statement is used to terminate the loop immediately when it is encountered.
for i in range(5):
if i == 3:
break
print(i)
Output : 0 1 2

This statement is used to skip the current iteration of the loop and control transfers to the next iteration.
for i in range(5):
if i == 3:
continue
print(i)
Output : 0 1 2 4

Basic Problems to try for Beginners:

1. Program to swap two variables without using temporary variable

2. Program to check whether a number is prime or not.

3. Program to check whether a number is odd or even.

4. Program to find the factorial of a number.

5. Program to write Fibonacci series by taking user input.

#pythonprogramming #indentation #condition #ifelsestatement #elif #loops #while #dowhileloop #forloop #range #function #in #keyword #breakstatement #continuestatement #basic #problems
#like #share #subscribemychannel


In questa pagina del sito puoi guardare il video online #basics della durata di online in buona qualità , che l'utente ha caricato Mastering Technology 24 settembre 2024, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 113 volte e gli è piaciuto 10 spettatori. Buona visione!