Multiplication of tables in Python -


  i = 1 def प्रिंटम (एन): जबकि i & lt; = 6: प्रिंट n * i, '\ T ', i = i + 1 प्रिंट जबकि i & lt; = 6: printM (i) i = i + 1  

परिणाम एक त्रुटि है जो i < / कोड> असाइनमेंट से पहले! कोई सुराग क्या गलत है?

आपको चर स्थानीयकरण को ध्यान में रखना होगा आम तौर पर कार्य / विधियों में वैश्विक वार्स का उपयोग न करना बेहतर होता है

  def printM (n): i = 0 जबकि i & lt  

आपके कोड के लिए उदाहरण: ; = 6: प्रिंट n * i, '\ t', i + = 1 प्रिंट i = 0 जबकि i & lt; = 6: प्रिंटएम (i) i = i + 1

आउटपुट :

<पूर्व> 0 0 0 0 0 0 0 0 1 2 3 4 5 6 0 2 4 6 8 10 12 0 3 6 9 12 15 18 0 4 8 12 16 20 24 0 5 10 15 20 25 30 0 6 12 18 24 30 36

Comments

Popular posts from this blog

java - org.apache.http.ProtocolException: Target host is not specified -

java - Gradle dependencies: compile project by relative path -

ruby on rails - Object doesn't support #inspect when used with .include -