“Wie man eine Programmiersprache in Python erstellt” Code-Antworten

So erstellen Sie Ihre eigene Programmiersprache in Python

run = True
while run:
    code = input('>>')
    if code != "exit":
        if code == "say:":
            say_what = input("....")
            print(say_what)
        try:
            if code == "if:":
                statement_true = None
                if_what = input('what')
                if if_what:
                    print("True")
                else:
                    print("Flase")
        except:
            print(f"Error")
#credit me i am vivaan please or if i find you i will report.
vivaan dabral

So erstellen Sie Ihre eigene Programmiersprache in Python

run = True
while run:
    code = input('>>')
    if code != "exit":
        if code == "say:":
            say_what = input("....")
            print(say_what)
        try:
            if code == "if:":
                statement_true = None
                if_what = input('what')
                if if_what:
                    print("True")
                else:
                    print("Flase")
        except:
            print(f"Error")
credit me
vivaan dabral

Python -Programmiersprache

Python is a high-level, interpreted, general-purpose programming language. 
Its design philosophy emphasizes code readability with the use of significant indentation. 
Python is dynamically-typed and garbage-collected
alimehridev

Wie man eine Programmiersprache in Python erstellt

while True:
    a = input("code>>")
    exec(a)
    
#this makes a python compiler ide in python if you write print("hello world") in 
#terminal it can write hello world
Perfect Pigeon

Ähnliche Antworten wie “Wie man eine Programmiersprache in Python erstellt”

Fragen ähnlich wie “Wie man eine Programmiersprache in Python erstellt”

Weitere verwandte Antworten zu “Wie man eine Programmiersprache in Python erstellt” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen