You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
281 B
Python

3 days ago
gender = 'nigga'
age = 22
print("hi my gender is", gender, "and my age is", age)
with open('bignigga.txt', 'w', encoding='utf-8') as f:
f.write(f"hi my gender is {gender} and my age is {age}\n")
x = 0
while x < 2000000:
x += 1
f.write(str(x) + "\n")