Python

Python is a high-level programming language designed to be easy to read and
simple to implement. It is open source, which means it is free to use, even
for commercial applications. Python can run on Mac, Windows, and Unix
systems and has also been ported to Java and .NET virtual machines.

Your welcome fellow coder :)

4.33
37
Nese Shun 85 points

                                       Y
  .-^-.
 /     \      .- ~ ~ -.
()     ()    /   _ _   `.                     _ _ _
 \_   _/    /  /     \   \                . ~  _ _  ~ .
   | |     /  /       \   \             .' .~       ~-. `.
   | |    /  /         )   )           /  /             `.`.
   \ \_ _/  /         /   /           /  /                `'
    \_ _ _.'         /   /           (  (
                    /   /             \  \
                   /   /               \  \
                  /   /                 )  )
                 (   (                 /  /
                  `.  `.             .'  /
                    `.   ~ - - - - ~   .'
                       ~ . _ _ _ _ . ~

4.33 (6 Votes)
0
4.1
8

                                    '''Python is an interpreted, high-level and general-purpose programming
language.Python's design philosophy emphasizes code readability with its 
notable use of significant whitespace. '''
#Examples
print("Hello World")
repeat = 5
for i in range(repeat):  
  print("This is the %i iteration" % i)
  #2nd variation - print("This is the " + i + "iteration")
  #3rd variation - print(f"This is the {i!r} iteration")
  #4th variation - print(("This is the {} iteration).format(i))
  
    import random #In order to use the random functions
    class Person:
      def __init__(self, name, age, height):
        self.name = str(name)
        self.age = int(age)
        self.height = str(height)
    person1 = Person("Name", random.randint(1, 100), str(random.randint(0, 7)) + "'" + str(random.randint(0, 11)) + '"')
    print(f"Your name is {person1.name} and you are {person1.age} years old. You are also {person1.height}.")

4.1 (10 Votes)
0
0
0
Kedomonzter 100 points

                                    best programming language

0
0
3.75
4
Rikke 75 points

                                    Python is an interpreted, high-level, 
general-purpose programming language.

//as you can also see to your right --------------------->

but also note interpreted, not compiled. 

3.75 (4 Votes)
0
0
0
Christy G 50 points

                                    from _future_ import print_function
import matplotlib.pyplot as plt
import os
import sys
import re
import gc

# Selection of features following "Writing mathematical expresion"tutorial
mathtext_tiles = {
    0: "Header demo"
    1: "Subscripts and superscripts"
    2: "Fraction ,bionomals and stacked numbers"
    3: "radicals"
    4: "Fonts"
    5: "Accents"
    6: "Greek Herbew"
    7: "Delimeters, functions and symbols"}
n_lines = len(mathtext_titles)

0
0
3.4
5
Escapist29 120 points

                                    Here is a basic Python function print('Hello')

3.4 (5 Votes)
0
4
5

                                    if you want to download python use https://www.python.org/downloads/

4 (5 Votes)
0
0
2
Parrhesia 95 points

                                    hey!!!

0
0
4.67
3
Joemama 130 points

                                    Great choice, great language, have fun coding!

4.67 (3 Votes)
0
Are there any code examples left?
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source