- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.py
More file actions
Latest commit
34 lines (26 loc) · 403 Bytes
/
Copy pathinput.py
File metadata and controls
34 lines (26 loc) · 403 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
defget(url):
returnfetch(url)
defprint(b):
console.log(b)
return1
print(1)
print("hi"=="n")
if"hi"=="hi":
print("hi == hi")
if"d"=="n":
print("d == n")
elif"d"=="d":
print("sure")
a=1
a=a+1
a=a-1
print(a)
print(2>1)
print(3<6)
print(2>=2)
print(3<=3)
a=5
b=2
ifa>b: print("a is greater than b")
yes="world"
print(f"hello {yes}")