Answers for "how to do python coding"

5

how to code in python

#if its your first time start with this
print("hello world")
#now learn about input
input("whats your name")
#if statements and variables
run = True
if run == True:
  print("hi")
#now lets combine our knowledge
print("Whats your name")
name = input("")
print("Hello, " + name)
Posted by: Guest on May-04-2021
0

python coding examples

app = 'YOUR TEXT'
replit = 'https://replit.com'
fruit = 'Banana'
discord = 'https://discord.gg/bkuzr9ZabV'

print(discord)
print(app)
print(replit)
print(fruit)
Posted by: Guest on July-06-2021

Python Answers by Framework

Browse Popular Code Answers by Language