0% found this document useful (0 votes)
5 views10 pages

Python and JavaScript Programming Basics

This document discusses learning to program using Python and JavaScript. It introduces variables, printing output, and conditional statements in both Python and JavaScript. Key differences are that Python uses indentation for code blocks and True/False instead of true/false for booleans.

Uploaded by

耿立
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views10 pages

Python and JavaScript Programming Basics

This document discusses learning to program using Python and JavaScript. It introduces variables, printing output, and conditional statements in both Python and JavaScript. Key differences are that Python uses indentation for code blocks and True/False instead of true/false for booleans.

Uploaded by

耿立
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Learning To Program - Abstractions

Introduction To Python
K. Scott Allen
@OdeToCode

JavaScript

Python

var x = 3;

x = 3

[Link]("Hi!");

print("Hi!")

if(guess == number) {
found = true;
}

if guess == number:
found = True

Queues

You might also like