python

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

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

but also note interpreted, not compiled. 

4.22
11
IllusiveBrian 18110 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)

4.22 (9 Votes)
0
4.5
2
Krish 100200 points

                                    Great choice, great language, have fun coding!

4.5 (2 Votes)
0
4.33
6
Phoenix Logan 186120 points

                                    hey!!!

4.33 (6 Votes)
0
0
0
A-312 69370 points

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

0
0
4
3
Krish 100200 points

                                    print('Hello World boi')

4 (3 Votes)
0
4.27
10
Awgiedawgie 440215 points

                                    '''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.27 (11 Votes)
0
3.5
2
Krish 100200 points

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

3.5 (2 Votes)
0
0
4
Awgiedawgie 440215 points

                                    best programming language

0
0
4
9
Krish 100200 points

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

4 (9 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