Quick actions

cmd+k|ctrl+k

Navigation

Languages

Variables

Snippet info

Language

Python

Visibility

public

Author

harshdeepsaini2757

Created

2025-11-01T20:22:30.385315Z

Updated

2025-11-01T20:22:30.385315Z

user_IQ = 190   # iq can be called as name and 190 binding also
user_age = user_IQ // 4


print(user_age)

# Constants
PI = 3.14 # change

a,b,c = 1,2,3

print(a)
print(b)
print(c)
INFO