“Eindrückung in Python” Code-Antworten

Eindrückung in Python

Indentation in Python refers to the (spaces and tabs) that are used at the beginning of a statement. 
Yellowed Yak

Was ist Einrückung in Python

#indentation in python matters because indentation refers to the spaces at the 
#beginning of a code line.
#indentation in python is inportant becuse python do not use {} to ditermine  
#the part of code insted it uses indentation to understand if the code is part 
#of functon , loop, condition and etc 
#following is the example run this code in your ide and find the diffrences
#good luck to find the diffrences
if 5 > 2:
  print("Five is greater than two!")
  
if 5 > 2:
print("Five is greater than two!")

if 5 > 2:
 print("Five is greater than two!") 
if 5 > 2:
        print("Five is greater than two!") 
Programmer of empires

Ähnliche Antworten wie “Eindrückung in Python”

Fragen ähnlich wie “Eindrückung in Python”

Weitere verwandte Antworten zu “Eindrückung in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen